about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-06-01 14:36:43 +0000
committerAlexander Barton <alex@barton.de>2002-06-01 14:36:43 +0000
commitdadebb2196737dd553ca46cd6e1f8c5e5e9b0722 (patch)
tree0ddee8360feefa53766089ba96688b3304cd0faf /src
parentbec858c77f92fe4f5a720f19cedb42913e9c32cd (diff)
downloadngircd-dadebb2196737dd553ca46cd6e1f8c5e5e9b0722.tar.gz
ngircd-dadebb2196737dd553ca46cd6e1f8c5e5e9b0722.zip
- Channel_RemoveClient() heisst nun Channel_Quit().
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/client.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ngircd/client.c b/src/ngircd/client.c
index dfa7f870..9cb47291 100644
--- a/src/ngircd/client.c
+++ b/src/ngircd/client.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: client.c,v 1.56 2002/05/30 16:52:21 alex Exp $
+ * $Id: client.c,v 1.57 2002/06/01 14:36:43 alex Exp $
  *
  * client.c: Management aller Clients
  *
@@ -249,7 +249,7 @@ Client_Destroy( CLIENT *Client, CHAR *LogMsg, CHAR *FwdMsg, BOOLEAN SendQuit )
 						else IRC_WriteStrServersPrefix( Client_NextHop( c ), c, "QUIT :" );
 					}
 				}
-				Channel_RemoveClient( c, FwdMsg ? FwdMsg : c->id );
+				Channel_Quit( c, FwdMsg ? FwdMsg : c->id );
 			}
 			else if( c->type == CLIENT_SERVER )
 			{