mod_console: Add a space before '(encrypted)' in s2s:show()
authorMatthew Wild <mwild1@gmail.com>
Tue, 6 Oct 2009 09:42:53 +0000 (10:42 +0100)
committerMatthew Wild <mwild1@gmail.com>
Tue, 6 Oct 2009 09:42:53 +0000 (10:42 +0100)
plugins/mod_console.lua

index e2d3435fe85c60e93648f65bc40eee27dce10f51..5472eb91160a39713a469994ef4b8ba8008a5a75 100644 (file)
@@ -467,7 +467,7 @@ function def_env.s2s:show(match_jid)
                for remotehost, session in pairs(host_session.s2sout) do
                        if (not match_jid) or remotehost:match(match_jid) or host:match(match_jid) then
                                count_out = count_out + 1;
-                               print("    "..host.." -> "..remotehost..(session.secure and "(encrypted)" or ""));
+                               print("    "..host.." -> "..remotehost..(session.secure and " (encrypted)" or ""));
                                if session.sendq then
                                        print("        There are "..#session.sendq.." queued outgoing stanzas for this connection");
                                end
@@ -504,7 +504,7 @@ function def_env.s2s:show(match_jid)
                                -- Pft! is what I say to list comprehensions
                                or (session.hosts and #array.collect(keys(session.hosts)):filter(subhost_filter)>0)) then
                                count_in = count_in + 1;
-                               print("    "..host.." <- "..(session.from_host or "(unknown)")..(session.secure and "(encrypted)" or ""));
+                               print("    "..host.." <- "..(session.from_host or "(unknown)")..(session.secure and " (encrypted)" or ""));
                                if session.type == "s2sin_unauthed" then
                                                print("        Connection not yet authenticated");
                                end