diff options
author | Matthew Wild <mwild1@gmail.com> | 2010-01-31 15:41:33 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2010-01-31 15:41:33 +0000 |
commit | 9f2b0935676b3fcb168714f177231305aafbddb6 (patch) | |
tree | cd0b1193feb9138f7327b3c44a1f80d12863a2c6 /core | |
parent | 0a591ad33a235bbfadcff3f0e4106e03732423b8 (diff) | |
download | prosody-9f2b0935676b3fcb168714f177231305aafbddb6.tar.gz prosody-9f2b0935676b3fcb168714f177231305aafbddb6.zip |
s2smanager: Update for new server SSL API (don't pass a sslctx)
Diffstat (limited to 'core')
-rw-r--r-- | core/s2smanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/s2smanager.lua b/core/s2smanager.lua index 19e318bc..d8ceb4ef 100644 --- a/core/s2smanager.lua +++ b/core/s2smanager.lua @@ -321,7 +321,7 @@ function make_connect(host_session, connect_host, connect_port) end local cl = connlisteners_get("xmppserver"); - conn = wrapclient(conn, connect_host, connect_port, cl, cl.default_mode or 1, hosts[from_host].ssl_ctx, false ); + conn = wrapclient(conn, connect_host, connect_port, cl, cl.default_mode or 1 ); host_session.conn = conn; -- Register this outgoing connection so that xmppserver_listener knows about it |