Updated Branches: refs/heads/master d86edfcc0 -> a4be68522
whitespaces Project: http://git-wip-us.apache.org/repos/asf/couchdb/repo Commit: http://git-wip-us.apache.org/repos/asf/couchdb/commit/a4be6852 Tree: http://git-wip-us.apache.org/repos/asf/couchdb/tree/a4be6852 Diff: http://git-wip-us.apache.org/repos/asf/couchdb/diff/a4be6852 Branch: refs/heads/master Commit: a4be685224ca314b05d9f08d07fcfd35ae9ab801 Parents: d86edfc Author: benoitc <[email protected]> Authored: Fri Feb 3 11:06:23 2012 -0800 Committer: benoitc <[email protected]> Committed: Fri Feb 3 11:06:23 2012 -0800 ---------------------------------------------------------------------- .../src/couch_replicator_utils.erl | 4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/couchdb/blob/a4be6852/src/couch_replicator/src/couch_replicator_utils.erl ---------------------------------------------------------------------- diff --git a/src/couch_replicator/src/couch_replicator_utils.erl b/src/couch_replicator/src/couch_replicator_utils.erl index f4ae785..4679321 100644 --- a/src/couch_replicator/src/couch_replicator_utils.erl +++ b/src/couch_replicator/src/couch_replicator_utils.erl @@ -311,9 +311,9 @@ ssl_params(Url) -> SslOpts1 = case CertFile /= nil andalso KeyFile /= nil of true -> case Password of - nil -> + nil -> [{certfile, CertFile}, {keyfile, KeyFile}] ++ SslOpts; - _ -> + _ -> [{certfile, CertFile}, {keyfile, KeyFile}, {password, Password}] ++ SslOpts end;
