repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 1e83e6662f0f3c28d95d189da221ffd246d985e3:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 1e83e6662f0f3c28d95d189da221ffd246d985e3
Author: Alexander Barton 
Date:   Wed Oct 9 13:35:32 2002 +0000

    - fehlenden Return-Wert ergaenzt (ich Dubel).

diff --git a/src/ngircd/irc.c b/src/ngircd/irc.c
index 3c878148df4fd657b24a5055c9318ec89bd5eea7..
index ..ff75b0343cfed4819ee8b2063e7c736b82798fbe 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.97 2002/10/09 13:33:19 alex Exp $
+ * $Id: irc.c,v 1.98 2002/10/09 13:35:32 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;
+	if(( Client_Type( Client ) != CLIENT_USER ) && ( Client_Type( Client ) != CLIENT_SERVER )) return CONNECTED;

 	/* Falsche Anzahl Parameter? */
 	if( Req->argc != 2 ) return CONNECTED;

-----END OF PAGE-----