s2smanager: Remove logging of (unknown) in a case where from_host and to_host should always be set

This commit is contained in:
Matthew Wild 2012-07-23 17:35:18 +01:00
parent e89b006f03
commit 249829afcb

View file

@ -74,7 +74,7 @@ function make_authenticated(session, host)
else else
return false; return false;
end end
session.log("debug", "connection %s->%s is now authenticated for %s", session.from_host or "(unknown)", session.to_host or "(unknown)", host); session.log("debug", "connection %s->%s is now authenticated for %s", session.from_host, session.to_host, host);
mark_connected(session); mark_connected(session);