diff options
author | Kim Alvefur <zash@zash.se> | 2020-02-13 23:03:03 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2020-02-13 23:03:03 +0100 |
commit | 798995ef1a78548aae4c76290064da064494acf4 (patch) | |
tree | 6f5e3f0968fd22bff4cffda5139ed9051e1d9d1f /plugins/mod_s2s | |
parent | a1a769e526c4c4ee88b421c003adfdad8a89c01f (diff) | |
download | prosody-798995ef1a78548aae4c76290064da064494acf4.tar.gz prosody-798995ef1a78548aae4c76290064da064494acf4.zip |
mod_s2s: Fix typo in comment [codespell]
Diffstat (limited to 'plugins/mod_s2s')
-rw-r--r-- | plugins/mod_s2s/mod_s2s.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_s2s/mod_s2s.lua b/plugins/mod_s2s/mod_s2s.lua index 39b23ee5..8feb6403 100644 --- a/plugins/mod_s2s/mod_s2s.lua +++ b/plugins/mod_s2s/mod_s2s.lua @@ -489,7 +489,7 @@ end local stream_xmlns_attr = {xmlns='urn:ietf:params:xml:ns:xmpp-streams'}; -- reason: stream error to send to the remote server -- remote_reason: stream error received from the remote server --- bounce_reason: stanza error to pass to bounce_sendq beacuse stream- and stanza errors are different +-- bounce_reason: stanza error to pass to bounce_sendq because stream- and stanza errors are different local function session_close(session, reason, remote_reason, bounce_reason) local log = session.log or log; if session.conn then |