summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbenoitc <benoitc@apache.org>2012-02-03 11:06:23 -0800
committerbenoitc <benoitc@apache.org>2012-02-03 11:06:23 -0800
commita4be685224ca314b05d9f08d07fcfd35ae9ab801 (patch)
tree4327e12739429d67503b9e5c40323c59a6c88dd3
parentd86edfcc0cbd70697cec6a893f9d2d8fefa35fd0 (diff)
downloadcouchdb-a4be685224ca314b05d9f08d07fcfd35ae9ab801.tar.gz
whitespaces
-rw-r--r--src/couch_replicator/src/couch_replicator_utils.erl4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/couch_replicator/src/couch_replicator_utils.erl b/src/couch_replicator/src/couch_replicator_utils.erl
index f4ae78530..467932151 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;