aboutsummaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorMatthew Wild <mwild1@gmail.com>2009-05-16 20:48:07 +0100
committerMatthew Wild <mwild1@gmail.com>2009-05-16 20:48:07 +0100
commit75ef8cbd13ea774e2b48582ec9e37fff4faf090f (patch)
tree32d9102a5bd4b289a97e13005d22ce9e9d3f24b5 /core
parent7a4e9c758eb9b171943377eff28d900e2f2ccba8 (diff)
downloadprosody-75ef8cbd13ea774e2b48582ec9e37fff4faf090f.tar.gz
prosody-75ef8cbd13ea774e2b48582ec9e37fff4faf090f.zip
stanza_router: s/conn/stream/ in log message
Diffstat (limited to 'core')
-rw-r--r--core/stanza_router.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/stanza_router.lua b/core/stanza_router.lua
index 44712fa7..1a9fb26c 100644
--- a/core/stanza_router.lua
+++ b/core/stanza_router.lua
@@ -107,7 +107,7 @@ function core_process_stanza(origin, stanza)
if origin.type == "s2sin" and not origin.dummy then
local host_status = origin.hosts[from_host];
if not host_status or not host_status.authed then -- remote server trying to impersonate some other server?
- log("warn", "Received a stanza claiming to be from %s, over a conn authed for %s!", from_host, origin.from_host);
+ log("warn", "Received a stanza claiming to be from %s, over a stream authed for %s!", from_host, origin.from_host);
return; -- FIXME what should we do here? does this work with subdomains?
end
end