You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@couchdb.apache.org by fd...@apache.org on 2010/07/04 23:21:46 UTC

svn commit: r960400 - /couchdb/branches/new_replicator/src/couchdb/couch_replicate.erl

Author: fdmanana
Date: Sun Jul  4 21:21:46 2010
New Revision: 960400

URL: http://svn.apache.org/viewvc?rev=960400&view=rev
Log:
Use couch_util:md5/1 instead of erlang:md5/1.

Modified:
    couchdb/branches/new_replicator/src/couchdb/couch_replicate.erl

Modified: couchdb/branches/new_replicator/src/couchdb/couch_replicate.erl
URL: http://svn.apache.org/viewvc/couchdb/branches/new_replicator/src/couchdb/couch_replicate.erl?rev=960400&r1=960399&r2=960400&view=diff
==============================================================================
--- couchdb/branches/new_replicator/src/couchdb/couch_replicate.erl (original)
+++ couchdb/branches/new_replicator/src/couchdb/couch_replicate.erl Sun Jul  4 21:21:46 2010
@@ -390,7 +390,7 @@ make_replication_id(Source, Target, User
         Filter ->
             [Filter, proplists:get_value(query_params, Options, {[]})]
         end,
-    couch_util:to_hex(erlang:md5(term_to_binary(Base))).
+    couch_util:to_hex(couch_util:md5(term_to_binary(Base))).
 
 get_rep_endpoint(_UserCtx, #httpdb{url=Url, headers=Headers, oauth=OAuth}) ->
     case OAuth of