summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/rabbit_networking.erl2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/rabbit_networking.erl b/src/rabbit_networking.erl
index b6d2c2cc..59863b22 100644
--- a/src/rabbit_networking.erl
+++ b/src/rabbit_networking.erl
@@ -110,7 +110,7 @@ boot_ssl() ->
{ok, SslOptsConfig} = application:get_env(ssl_options),
SslOpts =
case proplists:get_value(verify, SslOptsConfig, verify_none) of
- verify_none -> [SslOptsConfig];
+ verify_none -> SslOptsConfig;
verify_peer -> [{verify_fun, fun([]) -> true;
([_|_]) -> false
end}