]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/back-ldbm/config.c
Add OpenLDAP RCSid to *.[ch] in clients, libraries, and servers.
[openldap] / servers / slapd / back-ldbm / config.c
index 0e087dc0b18badec3009ca2f54fe9fbedd4c68b5..ef06a4fcc729e66300479246e1f5d41227fa3ed5 100644 (file)
@@ -1,4 +1,9 @@
 /* config.c - ldbm backend configuration file routine */
+/* $OpenLDAP$ */
+/*
+ * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
+ * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+ */
 
 #include "portable.h"
 
 #include "slap.h"
 #include "back-ldbm.h"
 
-ldbm_back_config(
+
+int
+ldbm_back_db_config(
     Backend    *be,
-    char       *fname,
+    const char *fname,
     int                lineno,
     int                argc,
     char       **argv
@@ -21,9 +28,9 @@ ldbm_back_config(
        struct ldbminfo *li = (struct ldbminfo *) be->be_private;
 
        if ( li == NULL ) {
-               fprintf( stderr, "%s: line %d: ldbm backend info is null!\n",
+               fprintf( stderr, "%s: line %d: ldbm database info is null!\n",
                    fname, lineno );
-               exit( 1 );
+               return( 1 );
        }
 
        /* directory where database files live */
@@ -32,9 +39,11 @@ ldbm_back_config(
                        fprintf( stderr,
                "%s: line %d: missing dir in \"directory <dir>\" line\n",
                            fname, lineno );
-                       exit( 1 );
+                       return( 1 );
                }
-               li->li_directory = strdup( argv[1] );
+               if ( li->li_directory )
+                       free( li->li_directory );
+               li->li_directory = ch_strdup( argv[1] );
 
        /* mode with which to create new database files */
        } else if ( strcasecmp( argv[0], "mode" ) == 0 ) {
@@ -42,7 +51,7 @@ ldbm_back_config(
                        fprintf( stderr,
                        "%s: line %d: missing mode in \"mode <mode>\" line\n",
                            fname, lineno );
-                       exit( 1 );
+                       return( 1 );
                }
                li->li_mode = strtol( argv[1], NULL, 0 );
 
@@ -52,7 +61,7 @@ ldbm_back_config(
                        fprintf( stderr,
 "%s: line %d: missing attr in \"index <attr> [pres,eq,approx,sub]\" line\n",
                            fname, lineno );
-                       exit( 1 );
+                       return( 1 );
                } else if ( argc > 3 ) {
                        fprintf( stderr,
 "%s: line %d: extra junk after \"index <attr> [pres,eq,approx,sub]\" line (ignored)\n",
@@ -66,7 +75,7 @@ ldbm_back_config(
                        fprintf( stderr,
                "%s: line %d: missing size in \"cachesize <size>\" line\n",
                            fname, lineno );
-                       exit( 1 );
+                       return( 1 );
                }
                li->li_cache.c_maxsize = atoi( argv[1] );
 
@@ -76,13 +85,13 @@ ldbm_back_config(
                        fprintf( stderr,
                "%s: line %d: missing size in \"dbcachesize <size>\" line\n",
                            fname, lineno );
-                       exit( 1 );
+                       return( 1 );
                }
                li->li_dbcachesize = atoi( argv[1] );
 
-       /* flush on writes */
-       } else if ( strcasecmp( argv[0], "flushwrites" ) == 0 ) {
-               li->li_flush_wrt = 1;
+       /* no write sync */
+       } else if ( strcasecmp( argv[0], "dbcachenowsync" ) == 0 ) {
+               li->li_dbcachewsync = 0;
 
        /* anything else */
        } else {
@@ -90,4 +99,6 @@ ldbm_back_config(
 "%s: line %d: unknown directive \"%s\" in ldbm database definition (ignored)\n",
                    fname, lineno, argv[0] );
        }
+
+       return 0;
 }