X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Fconf.c;h=40859888d217b19eb1bcb6e86853d3027b4ec593;hp=54506a0754fe810f9e77506259e436e3b057e9f2;hb=c7b55aa6f45b75b52fb67419b7ca5af3940016a4;hpb=5e70a131e9815e3c0f9e97d46e3257a4fec332b1 diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c index 54506a07..40859888 100644 --- a/src/ngircd/conf.c +++ b/src/ngircd/conf.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: conf.c,v 1.32 2002/10/04 11:21:46 alex Exp $ + * $Id: conf.c,v 1.33 2002/10/09 16:53:02 alex Exp $ * * conf.h: Konfiguration des ngircd */ @@ -98,8 +98,8 @@ Conf_Test( VOID ) printf( "%u", Conf_ListenPorts[i] ); } puts( "" ); - printf( " ServerUID = %ld\n", (INT32)Conf_UID ); - printf( " ServerGID = %ld\n", (INT32)Conf_GID ); + printf( " ServerUID = %ld\n", (LONG)Conf_UID ); + printf( " ServerGID = %ld\n", (LONG)Conf_GID ); printf( " PingTimeout = %d\n", Conf_PingTimeout ); printf( " PongTimeout = %d\n", Conf_PongTimeout ); printf( " ConnectRetry = %d\n", Conf_ConnectRetry ); @@ -295,7 +295,7 @@ LOCAL VOID Handle_GLOBAL( INT Line, CHAR *Var, CHAR *Arg ) { CHAR *ptr; - INT32 port; + LONG port; assert( Line > 0 ); assert( Var != NULL ); @@ -446,7 +446,7 @@ Handle_OPERATOR( INT Line, CHAR *Var, CHAR *Arg ) LOCAL VOID Handle_SERVER( INT Line, CHAR *Var, CHAR *Arg ) { - INT32 port; + LONG port; assert( Line > 0 ); assert( Var != NULL );