# HG changeset patch # User Kim Alvefur # Date 1355049885 -3600 # Node ID 97f3959380280bfe0d830415f1b54b755fbf1b71 # Parent 079e4cb23f8901b4c4edd2a6116c583fe0ad6755 mod_admin_telnet: Improve wording when listing users diff -r 079e4cb23f89 -r 97f395938028 plugins/mod_admin_telnet.lua --- a/plugins/mod_admin_telnet.lua Tue Dec 04 20:08:44 2012 +0000 +++ b/plugins/mod_admin_telnet.lua Sun Dec 09 11:44:45 2012 +0100 @@ -960,14 +960,15 @@ return nil, "No such host"; end local print = self.session.print; - local count = 0; + local total, matches = 0, 0; for user in um.users(host) do if not pat or user:match(pat) then print(user.."@"..host); + matches = matches + 1; end - count = count + 1; + total = total + 1; end - return true, count .. " users total"; + return true, "Showing "..(pat and (matches.." of ") or "all " )..total.." users"; end def_env.xmpp = {};