]> git.sur5r.net Git - openldap/commitdiff
Protoize cnvt_str2int()
authorHallvard Furuseth <hallvard@openldap.org>
Thu, 4 Mar 1999 13:51:14 +0000 (13:51 +0000)
committerHallvard Furuseth <hallvard@openldap.org>
Thu, 4 Mar 1999 13:51:14 +0000 (13:51 +0000)
servers/slapd/main.c

index 08b243fdd21fec7ac894bf9a154f1607ed992989..16b3e2cf2b1348e7c928c79927a9c8fd403305a9 100644 (file)
@@ -41,7 +41,7 @@ static STRDISP  syslog_types[] = {
     NULL
 };
 
-static int   cnvt_str2int();
+static int   cnvt_str2int( char *, STRDISP_P, int );
 
 #endif  /* LOG_LOCAL4 */
 
@@ -337,10 +337,7 @@ destroy:
  */
 
 static int
-cnvt_str2int (stringVal, dispatcher, defaultVal)
-char      *stringVal;
-STRDISP_P  dispatcher;
-int        defaultVal;
+cnvt_str2int( char *stringVal, STRDISP_P dispatcher, int defaultVal )
 {
     int        retVal = defaultVal;
     STRDISP_P  disp;