repo: ngircd
action: commit
revision: 
path_from: 
revision_from: e6d1bcdf82875c5ad1780d7b5903eb6daa43f32a:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit e6d1bcdf82875c5ad1780d7b5903eb6daa43f32a
Author: Alexander Barton 
Date:   Mon Jun 10 21:09:39 2002 +0000

    - bessere Fehlermeldung, wenn malloc() fehl schlaegt.

diff --git a/src/ngircd/client.c b/src/ngircd/client.c
index f23832210c034b132e587b92d2d782ae6805fada..
index ..c38c386b936fc46fe1227e59dfbb4b2f4f71447f 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.58 2002/06/02 23:16:42 alex Exp $
+ * $Id: client.c,v 1.59 2002/06/10 21:09:39 alex Exp $
  *
  * client.c: Management aller Clients
  *
@@ -973,7 +973,7 @@ New_Client_Struct( VOID )
 	c = malloc( sizeof( CLIENT ));
 	if( ! c )
 	{
-		Log( LOG_EMERG, "Can't allocate memory!" );
+		Log( LOG_EMERG, "Can't allocate memory! [New_Client_Struct]" );
 		return NULL;
 	}

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