]> 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 3ed61fa9e73045f9abdcab854d8db1283ad468f9..c98f68e316368a6efe8b6977de469b7dc9b5ddb8 100644 (file)
@@ -1,4 +1,9 @@
 /* config.c - passwd backend configuration file routine */
+/* $OpenLDAP$ */
+/*
+ * Copyright 1998-2003 The OpenLDAP Foundation, All Rights Reserved.
+ * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+ */
 
 #include "portable.h"
 
 #include <ac/time.h>
 
 #include "slap.h"
+#include "external.h"
 
-void
-passwd_back_config(
-    Backend    *be,
-    char       *fname,
+int
+passwd_back_db_config(
+    BackendDB  *be,
+    const char *fname,
     int                lineno,
     int                argc,
     char       **argv
@@ -26,7 +32,7 @@ passwd_back_config(
                        fprintf( stderr,
                "%s: line %d: missing filename in \"file <filename>\" line\n",
                            fname, lineno );
-                       exit( 1 );
+                       return( 1 );
                }
                be->be_private = ch_strdup( argv[1] );
 #else /* HAVE_SETPWFILE */
@@ -41,4 +47,6 @@ passwd_back_config(
 "%s: line %d: unknown directive \"%s\" in passwd database definition (ignored)\n",
                    fname, lineno, argv[0] );
        }
+
+       return( 0 );
 }