about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorAlexander Barton <alex@barton.de>2001-12-27 16:35:04 +0000
committerAlexander Barton <alex@barton.de>2001-12-27 16:35:04 +0000
commit9793b3005232fe5280f1b7ddb4655317aaada6f6 (patch)
treea34bc0567543ff52b80b8b592f4945845717c592 /src
parent72bd0d7c70775e9410c363e934f8c757ff2d877f (diff)
downloadngircd-9793b3005232fe5280f1b7ddb4655317aaada6f6.tar.gz
ngircd-9793b3005232fe5280f1b7ddb4655317aaada6f6.zip
- vergessene Variable bei Ping-Timeout-Logmeldung ergaenzt. Opsa.
Diffstat (limited to 'src')
-rw-r--r--src/ngircd/conn.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/ngircd/conn.c b/src/ngircd/conn.c
index e05305e4..e7a7e3b1 100644
--- a/src/ngircd/conn.c
+++ b/src/ngircd/conn.c
@@ -9,11 +9,14 @@
  * Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
  * der an comBase beteiligten Autoren finden Sie in der Datei AUTHORS.
  *
- * $Id: conn.c,v 1.14 2001/12/26 14:45:37 alex Exp $
+ * $Id: conn.c,v 1.15 2001/12/27 16:35:04 alex Exp $
  *
  * connect.h: Verwaltung aller Netz-Verbindungen ("connections")
  *
  * $Log: conn.c,v $
+ * Revision 1.15  2001/12/27 16:35:04  alex
+ * - vergessene Variable bei Ping-Timeout-Logmeldung ergaenzt. Opsa.
+ *
  * Revision 1.14  2001/12/26 14:45:37  alex
  * - "Code Cleanups".
  *
@@ -660,7 +663,7 @@ LOCAL VOID Check_Connections( VOID )
 				if( My_Connections[i].lastping < time( NULL ) - Conf_PongTimeout )
 				{
 					/* Timeout */
-					Log( LOG_NOTICE, "Connection %d: Ping timeout." );
+					Log( LOG_NOTICE, "Connection %d: Ping timeout.", i );
 					Conn_Close( i, "Ping timeout" );
 				}
 			}