]> git.sur5r.net Git - openldap/blobdiff - servers/slapd/configinfo.c
Implemented the open, init functions correctly
[openldap] / servers / slapd / configinfo.c
index c1719efde8a5d300bfdee1b767756a92e5d9bfef..df64293da42e206ad9e0f58336282c41176373b0 100644 (file)
  * is provided ``as is'' without express or implied warranty.
  */
 
+#include "portable.h"
+
 #include <stdio.h>
-#include <string.h>
-#include <sys/types.h>
-#include <sys/socket.h>
-#include "slap.h"
+
+#include <ac/string.h>
+#include <ac/socket.h>
+
 #include "ldapconfig.h"
+#include "slap.h"
 
 #if defined( SLAPD_CONFIG_DN )
 
-extern int             nbackends;
-extern Backend         *backends;
-extern char            *default_referral;
-
 /*
  * no mutex protection in here - take our chances!
  */
@@ -40,11 +39,10 @@ config_info( Connection *conn, Operation *op )
        vals[1] = NULL;
 
        e = (Entry *) ch_calloc( 1, sizeof(Entry) );
-       /* initialize reader/writer lock */
-       entry_rdwr_init(e);
 
        e->e_attrs = NULL;
-       e->e_dn = strdup( SLAPD_CONFIG_DN );
+       e->e_dn = ch_strdup( SLAPD_CONFIG_DN );
+       e->e_private = NULL;
 
        for ( i = 0; i < nbackends; i++ ) {
                strcpy( buf, backends[i].be_type );