From 7345d668355aab8d5eba35883ce00f0fdcbfdc53 Mon Sep 17 00:00:00 2001 From: brain Date: Tue, 25 Jul 2006 11:20:46 +0000 Subject: Exclude LUSERS lines with zero counts (NO WE WONT CHANGE THE SPELLING OF connection(s)!) git-svn-id: http://svn.inspircd.org/repository/branches/1_0_stable@4542 e03df62e-2008-0410-955e-edbf42e46eb7 --- src/cmd_lusers.cpp | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) (limited to 'src/cmd_lusers.cpp') diff --git a/src/cmd_lusers.cpp b/src/cmd_lusers.cpp index ed4a3d997..7c1363d93 100644 --- a/src/cmd_lusers.cpp +++ b/src/cmd_lusers.cpp @@ -38,10 +38,12 @@ void cmd_lusers::Handle (char **parameters, int pcnt, userrec *user) // this lusers command shows one server at all times because // a protocol module must override it to show those stats. WriteServ(user->fd,"251 %s :There are %d users and %d invisible on 1 server",user->nick,usercnt()-usercount_invisible(),usercount_invisible()); - WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers()); - WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown()); - WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount()); + if (usercount_opers()) + WriteServ(user->fd,"252 %s %d :operator(s) online",user->nick,usercount_opers()); + if (usercount_unknown()) + WriteServ(user->fd,"253 %s %d :unknown connections",user->nick,usercount_unknown()); + if (chancount()) + WriteServ(user->fd,"254 %s %d :channels formed",user->nick,chancount()); WriteServ(user->fd,"254 %s :I have %d clients and 0 servers",user->nick,local_count()); } - -- cgit v1.3.1-10-gc9f91