]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-passwd/config.c
ITS#2607: improve socket() error logging with AF info
[openldap] / servers / slapd / back-passwd / config.c
index 5a26ff0fb61e6a401c5fb522ef8ca5d45815f1a7..c98f68e316368a6efe8b6977de469b7dc9b5ddb8 100644 (file)
@@ -1,16 +1,25 @@
 /* config.c - passwd backend configuration file routine */
+/* $OpenLDAP$ */
+/*
+ * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
+ * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+ */
 
-#include <stdio.h>
-#include <string.h>
-#include <sys/time.h>
-#include <sys/types.h>
-#include <sys/socket.h>
 #include "portable.h"
+
+#include <stdio.h>
+
+#include <ac/socket.h>
+#include <ac/string.h>
+#include <ac/time.h>
+
 #include "slap.h"
+#include "external.h"
 
-passwd_back_config(
-    Backend    *be,
-    char       *fname,
+int
+passwd_back_db_config(
+    BackendDB  *be,
+    const char *fname,
     int                lineno,
     int                argc,
     char       **argv
@@ -23,9 +32,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",
@@ -38,4 +47,6 @@ passwd_back_config(
 "%s: line %d: unknown directive \"%s\" in passwd database definition (ignored)\n",
                    fname, lineno, argv[0] );
        }
+
+       return( 0 );
 }