about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2002-03-12 23:43:56 +0000
committerAlexander Barton <alex@barton.de>2002-03-12 23:43:56 +0000
commit03c3f3c990992d270c96609e3ae92d910583995c (patch)
tree7df3b5f736290c8117c5a3b6a56e4503f06e2341 /src
parent9146fa253459caf33fe8420b969e8f63d307caa0 (diff)
downloadngircd-03c3f3c990992d270c96609e3ae92d910583995c.tar.gz
ngircd-03c3f3c990992d270c96609e3ae92d910583995c.zip
- Netz-Split-Nachricht war so falsch. Nun ist sie korrekt aber nicht schoen.
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 0257e964..f8f1fd28 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.49 2002/03/12 23:42:59 alex Exp $
+ * $Id: client.c,v 1.50 2002/03/12 23:43:56 alex Exp $
  *
  * client.c: Management aller Clients
  *
@@ -188,7 +188,7 @@ GLOBAL VOID Client_Destroy( CLIENT *Client, CHAR *LogMsg, CHAR *FwdMsg, BOOLEAN
 	else txt = FwdMsg;
 	if( ! txt ) txt = "Reason unknown.";
 
-	/* Netz-Split-Nachricht vorbereiten */
+	/* Netz-Split-Nachricht vorbereiten (noch nicht optimal) */
 	if( Client->type == CLIENT_SERVER ) sprintf( msg, "%s: lost server %s", This_Server->id, Client->id );
 
 	last = NULL;