commit cb76d96efb78ca7bdb884ce3327680614ed31940 from: Alexander Barton date: Thu Mar 11 22:16:31 2004 UTC Fixed some warnings of non-gcc-compilers (e. g. original Apple compiler on A/UX): "warning: illegal pointer combination, op =". commit - de1489b39bf5fe48beeb9432b95f345eca6a02d1 commit + cb76d96efb78ca7bdb884ce3327680614ed31940 blob - 57ca90a39d7a4ec96e581b903b9831a869d94247 blob + c5dde86a99fb3117e1208c9a0a3e5760f826fd5f --- src/ngircd/channel.c +++ src/ngircd/channel.c @@ -17,7 +17,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: channel.c,v 1.44 2004/01/17 03:17:49 alex Exp $"; +static char UNUSED id[] = "$Id: channel.c,v 1.45 2004/03/11 22:16:31 alex Exp $"; #include "imp.h" #include @@ -708,7 +708,7 @@ Channel_Create( CHAR *Name ) assert( Name != NULL ); - c = malloc( sizeof( CHANNEL )); + c = (CHANNEL *)malloc( sizeof( CHANNEL )); if( ! c ) { Log( LOG_EMERG, "Can't allocate memory! [New_Chan]" ); @@ -760,7 +760,7 @@ Add_Client( CHANNEL *Chan, CLIENT *Client ) assert( Client != NULL ); /* neue CL2CHAN-Struktur anlegen */ - cl2chan = malloc( sizeof( CL2CHAN )); + cl2chan = (CL2CHAN *)malloc( sizeof( CL2CHAN )); if( ! cl2chan ) { Log( LOG_EMERG, "Can't allocate memory! [Add_Client]" ); blob - 00f9cc6c9b3db10e785b941deda9ad7ea0e20c5f blob + cfe2bafc3195e9af72202ea0f7bc28d123e3a2dd --- src/ngircd/client.c +++ src/ngircd/client.c @@ -17,7 +17,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: client.c,v 1.75 2004/01/17 03:17:49 alex Exp $"; +static char UNUSED id[] = "$Id: client.c,v 1.76 2004/03/11 22:16:31 alex Exp $"; #include "imp.h" #include @@ -1024,7 +1024,7 @@ New_Client_Struct( VOID ) CLIENT *c; - c = malloc( sizeof( CLIENT )); + c = (CLIENT *)malloc( sizeof( CLIENT )); if( ! c ) { Log( LOG_EMERG, "Can't allocate memory! [New_Client_Struct]" ); blob - cea5c4bed55924888aa996f06a446ec1c7308e4d blob + c40961c795ef8551628dddac68cdc157058da976 --- src/ngircd/conn.c +++ src/ngircd/conn.c @@ -16,7 +16,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: conn.c,v 1.132 2004/02/28 02:01:01 alex Exp $"; +static char UNUSED id[] = "$Id: conn.c,v 1.133 2004/03/11 22:16:31 alex Exp $"; #include "imp.h" #include @@ -117,7 +117,7 @@ Conn_Init( VOID ) /* konfiguriertes Limit beachten */ if( Pool_Size > Conf_MaxConnections ) Pool_Size = Conf_MaxConnections; } - My_Connections = malloc( sizeof( CONNECTION ) * Pool_Size ); + My_Connections = (CONNECTION *)malloc( sizeof( CONNECTION ) * Pool_Size ); if( ! My_Connections ) { /* Speicher konnte nicht alloziert werden! */ @@ -1003,11 +1003,11 @@ New_Connection( INT Sock ) /* zunaechst realloc() versuchen; wenn das scheitert, malloc() versuchen * und Daten ggf. "haendisch" umkopieren. (Haesslich! Eine wirklich * dynamische Verwaltung waere wohl _deutlich_ besser ...) */ - ptr = realloc( My_Connections, sizeof( CONNECTION ) * new_size ); + ptr = (POINTER *)realloc( My_Connections, sizeof( CONNECTION ) * new_size ); if( ! ptr ) { /* realloc() ist fehlgeschlagen. Nun malloc() probieren: */ - ptr = malloc( sizeof( CONNECTION ) * new_size ); + ptr = (POINTER *)malloc( sizeof( CONNECTION ) * new_size ); if( ! ptr ) { /* Offenbar steht kein weiterer Sepeicher zur Verfuegung :-( */ @@ -1029,7 +1029,7 @@ New_Connection( INT Sock ) #endif /* Adjust pointer to new block */ - My_Connections = ptr; + My_Connections = (CONNECTION *)ptr; /* Initialize new items */ for( idx = Pool_Size; idx < new_size; idx++ ) Init_Conn_Struct( idx ); blob - f60f9be410ddf8ea8a3520a1ce1a31ed3d02abdd blob + a02f85c7373d8b0be145e78673b3ff9cce9f5e2a --- src/ngircd/irc-channel.c +++ src/ngircd/irc-channel.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: irc-channel.c,v 1.25 2003/01/08 22:04:05 alex Exp $"; +static char UNUSED id[] = "$Id: irc-channel.c,v 1.26 2004/03/11 22:16:31 alex Exp $"; #include "imp.h" #include @@ -68,7 +68,7 @@ IRC_JOIN( CLIENT *Client, REQUEST *Req ) channame = strtok( Req->argv[0], "," ); while( channame ) { - chan = flags = NULL; + chan = NULL; flags = NULL; /* wird der Channel neu angelegt? */ if( Channel_Search( channame )) is_new_chan = FALSE; blob - 6f9ab92b20a7e55efda1c6c29c8349fa7eae67a7 blob + 149cbfe94ccda4b431c7dc66502ed8e2a2fa5c93 --- src/ngircd/irc-login.c +++ src/ngircd/irc-login.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: irc-login.c,v 1.39 2004/02/04 19:56:05 alex Exp $"; +static char UNUSED id[] = "$Id: irc-login.c,v 1.40 2004/03/11 22:16:31 alex Exp $"; #include "imp.h" #include @@ -509,7 +509,7 @@ Kill_Nick( CHAR *Nick, CHAR *Reason ) assert( Nick != NULL ); assert( Reason != NULL ); - r.prefix = Client_ThisServer( ); + r.prefix = (CHAR *)Client_ThisServer( ); r.argv[0] = Nick; r.argv[1] = Reason; r.argc = 2; blob - cc0538e910707a330c7d1864bfe5b96a5d4970d4 blob + a9d476753aeac68fb07e7ebbe62567271efa00cd --- src/ngircd/lists.c +++ src/ngircd/lists.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: lists.c,v 1.12 2004/01/17 03:17:49 alex Exp $"; +static char UNUSED id[] = "$Id: lists.c,v 1.13 2004/03/11 22:16:31 alex Exp $"; #include "imp.h" #include @@ -371,7 +371,7 @@ New_C2C( CHAR *Mask, CHANNEL *Chan, BOOLEAN OnlyOnce ) assert( Chan != NULL ); /* Speicher fuer Eintrag anfordern */ - c2c = malloc( sizeof( C2C )); + c2c = (C2C *)malloc( sizeof( C2C )); if( ! c2c ) { Log( LOG_EMERG, "Can't allocate memory! [New_C2C]" ); blob - 69705db5a104163f6befd8aec81d52c2b034c4ba blob + c8cf7621c506c01e0cbe8d30248d843e49eb313e --- src/ngircd/resolve.c +++ src/ngircd/resolve.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: resolve.c,v 1.7 2003/12/27 13:01:12 alex Exp $"; +static char UNUSED id[] = "$Id: resolve.c,v 1.8 2004/03/11 22:16:31 alex Exp $"; #include "imp.h" #include @@ -78,7 +78,7 @@ Resolve_Addr( struct sockaddr_in *Addr ) INT pid; /* Allocate memory */ - s = malloc( sizeof( RES_STAT )); + s = (RES_STAT *)malloc( sizeof( RES_STAT )); if( ! s ) { Log( LOG_EMERG, "Resolver: Can't allocate memory! [Resolve_Addr]" ); @@ -136,7 +136,7 @@ Resolve_Name( CHAR *Host ) INT pid; /* Allocate memory */ - s = malloc( sizeof( RES_STAT )); + s = (RES_STAT *)malloc( sizeof( RES_STAT )); if( ! s ) { Log( LOG_EMERG, "Resolver: Can't allocate memory! [Resolve_Name]" );