]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-passwd/config.c
Updated some items
[openldap] / servers / slapd / back-passwd / config.c
index 839af28cab70685b9baed13512de900d70c92ca8..7f6cb41169d45c82fc797843f6de7e8a721dec7c 100644 (file)
@@ -9,9 +9,11 @@
 #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 );
 }