about summary refs log tree commit diff
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-10-09 13:33:19 +0000
committerAlexander Barton <alex@barton.de>2002-10-09 13:33:19 +0000
commit39d7b014cfc775690d386334cbab9387e68ea25c (patch)
treef413a192d8addda3c6b04a94309f98ad6b8beebe
parentbd645f50958af01922840acc839ad2f75113a1ea (diff)
downloadngircd-39d7b014cfc775690d386334cbab9387e68ea25c.tar.gz
ngircd-39d7b014cfc775690d386334cbab9387e68ea25c.zip
- NOTICE liefert nun nie(!) einen Fehler, auch nicht, wenn Client noch nicht registriert.
-rw-r--r--src/ngircd/irc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/irc.c b/src/ngircd/irc.c
index ac0315a9..3c878148 100644
--- a/src/ngircd/irc.c
+++ b/src/ngircd/irc.c
@@ -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.c,v 1.96 2002/10/04 11:21:46 alex Exp $
+ * $Id: irc.c,v 1.97 2002/10/09 13:33:19 alex Exp $
  *
  * irc.c: IRC-Befehle
  */
@@ -109,7 +109,7 @@ IRC_NOTICE( CLIENT *Client, REQUEST *Req )
 	assert( Client != NULL );
 	assert( Req != NULL );
 
-	if(( Client_Type( Client ) != CLIENT_USER ) && ( Client_Type( Client ) != CLIENT_SERVER )) return IRC_WriteStrClient( Client, ERR_NOTREGISTERED_MSG, Client_ID( Client ));
+	if(( Client_Type( Client ) != CLIENT_USER ) && ( Client_Type( Client ) != CLIENT_SERVER )) return;
 
 	/* Falsche Anzahl Parameter? */
 	if( Req->argc != 2 ) return CONNECTED;