mirror of
https://github.com/osmarks/ngircd.git
synced 2025-01-14 09:35:41 +00:00
- IRC_INVITE() validierte das Ziel eines INVITES nicht korrekt.
This commit is contained in:
parent
9fd8254ada
commit
151babd168
@ -9,7 +9,7 @@
|
||||
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
|
||||
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
|
||||
*
|
||||
* $Id: irc-op.c,v 1.4 2002/06/09 13:17:29 alex Exp $
|
||||
* $Id: irc-op.c,v 1.5 2002/06/11 13:59:07 alex Exp $
|
||||
*
|
||||
* irc-op.c: Befehle zur Channel-Verwaltung
|
||||
*/
|
||||
@ -101,7 +101,7 @@ IRC_INVITE( CLIENT *Client, REQUEST *Req )
|
||||
|
||||
/* User suchen */
|
||||
target = Client_Search( Req->argv[0] );
|
||||
if( ! target ) return IRC_WriteStrClient( from, ERR_NOSUCHNICK_MSG, Client_ID( Client ), Req->argv[0] );
|
||||
if(( ! target ) || ( Client_Type( target ) != CLIENT_USER )) return IRC_WriteStrClient( from, ERR_NOSUCHNICK_MSG, Client_ID( Client ), Req->argv[0] );
|
||||
|
||||
chan = Channel_Search( Req->argv[1] );
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user