diff options
author | Waqas Hussain <waqas20@gmail.com> | 2010-02-12 04:30:17 +0500 |
---|---|---|
committer | Waqas Hussain <waqas20@gmail.com> | 2010-02-12 04:30:17 +0500 |
commit | 1445574fd32de84b735e4d324ad9a6864b26ba57 (patch) | |
tree | 3b5e3d9ad75f9fd14a2efdaf9c52db4ee6ea288a /plugins/mod_tls.lua | |
parent | 98da04140180b77125ad1fdecb0d47f30c9d30fb (diff) | |
download | prosody-1445574fd32de84b735e4d324ad9a6864b26ba57.tar.gz prosody-1445574fd32de84b735e4d324ad9a6864b26ba57.zip |
s2smanager, mod_compression, mod_tls: Changed event.session to event.origin for s2s-stream-features event for consistency.
Diffstat (limited to 'plugins/mod_tls.lua')
-rw-r--r-- | plugins/mod_tls.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/mod_tls.lua b/plugins/mod_tls.lua index dfc1e338..47b92d73 100644 --- a/plugins/mod_tls.lua +++ b/plugins/mod_tls.lua @@ -49,8 +49,8 @@ module:hook("stream-features", function(event) end end); module:hook("s2s-stream-features", function(event) - local session, features = event.session, event.features; - if session.to_host and session.type ~= "s2sin" and session.conn.starttls then + local origin, features = event.origin, event.features; + if origin.to_host and origin.type ~= "s2sin" and origin.conn.starttls then features:add_child(s2s_feature); end end); |