diff options
author | Badlop <badlop@process-one.net> | 2011-12-23 12:19:18 +0100 |
---|---|---|
committer | Badlop <badlop@process-one.net> | 2011-12-23 12:19:18 +0100 |
commit | 9912e1b548de5d36bdbb1f86a7ba0213aa67f4c9 (patch) | |
tree | c47887a3bb35f05b9f61c3574196871161bcae19 | |
parent | Always allow packets from user's server and bare jid (thanks to Alexey Shchepin) (diff) |
Support undefinition of ssl:seed in R15B
-rw-r--r-- | src/eldap/eldap.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/eldap/eldap.erl b/src/eldap/eldap.erl index fb7e264c3..d21d7de11 100644 --- a/src/eldap/eldap.erl +++ b/src/eldap/eldap.erl @@ -438,7 +438,7 @@ init([]) -> end; init({Hosts, Port, Rootdn, Passwd, Opts}) -> catch ssl:start(), - ssl:seed(randoms:get_string()), + catch ssl:seed(randoms:get_string()), Encrypt = case proplists:get_value(encrypt, Opts) of tls -> tls; _ -> none |