commit 27d93d7d8c1dacb3a9874084a67629df26f96bb1 from: Florian Westphal date: Sat Mar 19 15:46:38 2005 UTC fix Config_Error_NaN prototype (first argument missed "const") commit - 8a2ed0a75f5f3749070f2c7002c3c4ee38118355 commit + 27d93d7d8c1dacb3a9874084a67629df26f96bb1 blob - f00c263346cdbc250cf525a57f9bbe05a01c4d7e blob + cc56e6c09d1efa17f2b3ed4d5283c1fd6d510064 --- src/ngircd/conf.c +++ src/ngircd/conf.c @@ -14,7 +14,7 @@ #include "portab.h" -static char UNUSED id[] = "$Id: conf.c,v 1.70 2005/03/15 16:56:18 alex Exp $"; +static char UNUSED id[] = "$Id: conf.c,v 1.71 2005/03/19 15:46:38 fw Exp $"; #include "imp.h" #include @@ -66,8 +66,8 @@ LOCAL VOID Handle_CHANNEL PARAMS(( INT Line, CHAR *Var LOCAL VOID Config_Error PARAMS(( CONST INT Level, CONST CHAR *Format, ... )); -LOCAL VOID Config_Error_NaN PARAMS(( INT LINE, CONST CHAR *Value )); -LOCAL VOID Config_Error_TooLong PARAMS(( INT LINE, CONST CHAR *Value )); +LOCAL VOID Config_Error_NaN PARAMS(( const int LINE, const char *Value )); +LOCAL VOID Config_Error_TooLong PARAMS(( const int LINE, const char *Value )); LOCAL VOID Init_Server_Struct PARAMS(( CONF_SERVER *Server )); @@ -1009,13 +1009,13 @@ Validate_Config( BOOLEAN Configtest ) LOCAL VOID -Config_Error_TooLong ( CONST INT Line, CONST CHAR *Item ) +Config_Error_TooLong ( const int Line, const char *Item ) { Config_Error( LOG_WARNING, "%s, line %d: Value of \"%s\" too long!", NGIRCd_ConfFile, Line, Item ); } LOCAL VOID -Config_Error_NaN( CONST INT Line, CONST CHAR *Item ) +Config_Error_NaN( const int Line, const char *Item ) { Config_Error( LOG_WARNING, "%s, line %d: Value of \"%s\" is not a number!", NGIRCd_ConfFile, Line, Item ); }