repo: ngircd
action: commit
revision: 
path_from: 
revision_from: 27d93d7d8c1dacb3a9874084a67629df26f96bb1:
path_to: 
revision_to: 
git.thebackupbox.net
ngircd
git clone git://git.thebackupbox.net/ngircd
commit 27d93d7d8c1dacb3a9874084a67629df26f96bb1
Author: Florian Westphal 
Date:   Sat Mar 19 15:46:38 2005 +0000

    fix Config_Error_NaN prototype (first argument missed "const")

diff --git a/src/ngircd/conf.c b/src/ngircd/conf.c
index f00c263346cdbc250cf525a57f9bbe05a01c4d7e..
index ..cc56e6c09d1efa17f2b3ed4d5283c1fd6d510064 100644
--- a/src/ngircd/conf.c
+++ b/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, CHAR *Arg ));

 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 );
 }

-----END OF PAGE-----