From: Alexander Barton Date: Wed, 18 Dec 2002 13:07:46 +0000 (+0000) Subject: - "STATS l" now only shows server-server-links and the own connection. X-Git-Tag: rel-0-6-0-pre1~8 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=98677b4348f8865261cada54249d6ce59b6eb47d - "STATS l" now only shows server-server-links and the own connection. --- diff --git a/src/ngircd/irc-info.c b/src/ngircd/irc-info.c index 922e2761..511d2a23 100644 --- a/src/ngircd/irc-info.c +++ b/src/ngircd/irc-info.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: irc-info.c,v 1.6 2002/12/16 17:14:57 alex Exp $"; +static char UNUSED id[] = "$Id: irc-info.c,v 1.7 2002/12/18 13:07:46 alex Exp $"; #include "imp.h" #include @@ -368,8 +368,9 @@ IRC_STATS( CLIENT *Client, REQUEST *Req ) while( con != NONE ) { cl = Client_GetFromConn( con ); - if( cl ) + if( cl && (( Client_Type( cl ) == CLIENT_SERVER ) || ( cl == Client ))) { + /* Server link or our own connection */ #ifdef USE_ZLIB if( Conn_Options( con ) & CONN_ZIP ) {