From: Alexander Barton Date: Sat, 30 Aug 2003 20:28:54 +0000 (+0000) Subject: Fixed typo in debug output. X-Git-Tag: rel-0-8-0-pre1~82 X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd.git;a=commitdiff_plain;h=b9f16c96359100763ce02e62cc5b01d831c62e8c Fixed typo in debug output. --- diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c index 89f0ae66..1c16b5da 100644 --- a/src/ngircd/conn.c +++ b/src/ngircd/conn.c @@ -16,7 +16,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: conn.c,v 1.123 2003/04/25 16:47:52 alex Exp $"; +static char UNUSED id[] = "$Id: conn.c,v 1.124 2003/08/30 20:28:54 alex Exp $"; #include "imp.h" #include @@ -119,7 +119,7 @@ Conn_Init( VOID ) Log( LOG_EMERG, "Can't allocate memory! [Conn_Init]" ); exit( 1 ); } - Log( LOG_DEBUG, "Allocted connection pool for %d items (%ld bytes).", Pool_Size, sizeof( CONNECTION ) * Pool_Size ); + Log( LOG_DEBUG, "Allocated connection pool for %d items (%ld bytes).", Pool_Size, sizeof( CONNECTION ) * Pool_Size ); /* zu Beginn haben wir keine Verbindungen */ FD_ZERO( &My_Listeners );