From: Alexander Barton Date: Fri, 27 Dec 2002 13:35:19 +0000 (+0000) Subject: - Fixed prefix of error messages of KILL. X-Git-Tag: rel-0-7-0-pre1~139 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=commitdiff_plain;h=8340e4267ccd2e8d0014bab36d26a162ba2877ad - Fixed prefix of error messages of KILL. --- diff --git a/src/ngircd/irc.c b/src/ngircd/irc.c index 0f24ae6e..dcaf348d 100644 --- a/src/ngircd/irc.c +++ b/src/ngircd/irc.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: irc.c,v 1.111 2002/12/27 13:17:04 alex Exp $"; +static char UNUSED id[] = "$Id: irc.c,v 1.112 2002/12/27 13:35:19 alex Exp $"; #include "imp.h" #include @@ -85,8 +85,8 @@ IRC_KILL( CLIENT *Client, REQUEST *Req ) if( c ) { /* Yes, there is such a client -- but is it a valid user? */ - if( Client_Type( c ) == CLIENT_SERVER ) IRC_WriteStrClient( prefix, ERR_CANTKILLSERVER_MSG, Client_ID( prefix )); - else if( Client_Type( c ) != CLIENT_USER )IRC_WriteStrClient( prefix, ERR_NOPRIVILEGES_MSG, Client_ID( prefix )); + if( Client_Type( c ) == CLIENT_SERVER ) IRC_WriteStrClient( Client, ERR_CANTKILLSERVER_MSG, Client_ID( Client )); + else if( Client_Type( c ) != CLIENT_USER )IRC_WriteStrClient( Client, ERR_NOPRIVILEGES_MSG, Client_ID( Client )); else { /* Kill user NOW! */