]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-passwd/config.c
Updated some items
[openldap] / servers / slapd / back-passwd / config.c
index 252717ab7307108b8f636ad979d37e19d1a38c7e..7f6cb41169d45c82fc797843f6de7e8a721dec7c 100644 (file)
@@ -3,15 +3,17 @@
 #include "portable.h"
 
 #include <stdio.h>
-#include <string.h>
-#include <sys/time.h>
-#include <sys/types.h>
-#include <sys/socket.h>
-#include "portable.h"
+
+#include <ac/socket.h>
+#include <ac/string.h>
+#include <ac/time.h>
+
 #include "slap.h"
+#include "external.h"
 
-passwd_back_config(
-    Backend    *be,
+int
+passwd_back_db_config(
+    BackendDB  *be,
     char       *fname,
     int                lineno,
     int                argc,
@@ -25,9 +27,9 @@ passwd_back_config(
                        fprintf( stderr,
                "%s: line %d: missing filename in \"file <filename>\" line\n",
                            fname, lineno );
-                       exit( 1 );
+                       return( 1 );
                }
-               be->be_private = strdup( argv[1] );
+               be->be_private = ch_strdup( argv[1] );
 #else /* HAVE_SETPWFILE */
                fprintf( stderr,
     "%s: line %d: ignoring \"file\" option (not supported on this platform)\n",
@@ -40,4 +42,6 @@ passwd_back_config(
 "%s: line %d: unknown directive \"%s\" in passwd database definition (ignored)\n",
                    fname, lineno, argv[0] );
        }
+
+       return( 0 );
 }