diff options
author | Kim Alvefur <zash@zash.se> | 2021-07-27 00:13:18 +0200 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2021-07-27 00:13:18 +0200 |
commit | c506269ff5656772fdf739c61bf1aceac4fe9060 (patch) | |
tree | e4cd04869d2730f975a5cd27fc5a9a08485390e6 /plugins/mod_bosh.lua | |
parent | 9ced42c9fb1f8428fca87bfdf02472d72421e881 (diff) | |
download | prosody-c506269ff5656772fdf739c61bf1aceac4fe9060.tar.gz prosody-c506269ff5656772fdf739c61bf1aceac4fe9060.zip |
Fix various spelling errors (thanks codespell)
Also special thanks to timeless, for wordlessly reminding me to check
for typos.
Diffstat (limited to 'plugins/mod_bosh.lua')
-rw-r--r-- | plugins/mod_bosh.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/mod_bosh.lua b/plugins/mod_bosh.lua index b050e350..7e710760 100644 --- a/plugins/mod_bosh.lua +++ b/plugins/mod_bosh.lua @@ -293,7 +293,7 @@ function stream_callbacks.streamopened(context, attr) end if not prosody.hosts[to_host] then - log("debug", "BOSH client tried to connect to non-existant host: %s", attr.to); + log("debug", "BOSH client tried to connect to non-existent host: %s", attr.to); report_bad_host(); local close_reply = st.stanza("body", { xmlns = xmlns_bosh, type = "terminate", ["xmlns:stream"] = xmlns_streams, condition = "improper-addressing" }); |