commit - 135abb5d74a37442312d8bc33f75af20c6c69d53
commit + 5b25c8ccd0420b7e0834ef6ec186b57453f2156a
blob - 4b024b6233f90a1f0bbf688458934c5e66d4b0e5
blob + de4ae977fb0923f2c20582a3abb749573625cd46
--- configure.in
+++ configure.in
# Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
# der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
#
-# $Id: configure.in,v 1.63 2002/10/11 00:49:49 alex Exp $
+# $Id: configure.in,v 1.64 2002/10/22 23:25:29 alex Exp $
#
# -- Initialisierung --
# -- Variablen --
if test "$GCC" = "yes"; then
- CFLAGS="-Wall $CFLAGS"
+ CFLAGS="-Wall -ansi $CFLAGS"
fi
the_CFLAGS="$CFLAGS"
blob - bb3271958557b291852f64fe2a07fc0b638ad927
blob + db7bccb4467b06153e504d0d5e78bc5435ba2a6c
--- src/ngircd/conn.c
+++ src/ngircd/conn.c
* Naehere Informationen entnehmen Sie bitter der Datei COPYING. Eine Liste
* der an ngIRCd beteiligten Autoren finden Sie in der Datei AUTHORS.
*
- * $Id: conn.c,v 1.84 2002/10/21 13:45:07 alex Exp $
+ * $Id: conn.c,v 1.85 2002/10/22 23:25:29 alex Exp $
*
* connect.h: Verwaltung aller Netz-Verbindungen ("connections")
*/
/* Statistik an Client melden, wenn User */
if(( c != NULL ) && ( Client_Type( c ) == CLIENT_USER ))
{
- Conn_WriteStr( Idx, "NOTICE %s :%sConnection statistics: %.1f kb received, %.1f kb sent.", Client_ThisServer( ), NOTICE_TXTPREFIX, (DOUBLE)My_Connections[Idx].bytes_in / 1024, (DOUBLE)My_Connections[Idx].bytes_out / 1024 );
+ Conn_WriteStr( Idx, "NOTICE %s :%sConnection statistics: client %.1f kb, server %.1f kb.", Client_ThisServer( ), NOTICE_TXTPREFIX, (DOUBLE)My_Connections[Idx].bytes_in / 1024, (DOUBLE)My_Connections[Idx].bytes_out / 1024 );
}
/* ERROR an Client schicken (von RFC so vorgesehen!) */