]> git.sur5r.net Git - openldap/blobdiff - libraries/libldap/open.c
Add reference to ldap.conf(5).
[openldap] / libraries / libldap / open.c
index ff88c634638995dade20d91634f61a77315dcaaf..913c07fcfed5b091a48ccb14c70ed8f80071c78a 100644 (file)
@@ -1,4 +1,8 @@
 /*
+ * Copyright 1998-1999 The OpenLDAP Foundation, All Rights Reserved.
+ * COPYING RESTRICTIONS APPLY, see COPYRIGHT file
+ */
+/*  Portions
  *  Copyright (c) 1995 Regents of the University of Michigan.
  *  All rights reserved.
  *
@@ -7,10 +11,6 @@
 
 #include "portable.h"
 
-#ifndef lint 
-static char copyright[] = "@(#) Copyright (c) 1995 Regents of the University of Michigan.\nAll rights reserved.\n";
-#endif
-
 #include <stdio.h>
 #include <stdlib.h>
 
@@ -24,11 +24,6 @@ static char copyright[] = "@(#) Copyright (c) 1995 Regents of the University of
 
 #include "ldap-int.h"
 
-#ifdef LDAP_DEBUG
-int    ldap_debug;
-#endif
-
-
 /*
  * ldap_open - initialize and connect to an ldap server.  A magic cookie to
  * be used for future communication is returned on success, NULL on failure.
@@ -170,10 +165,17 @@ ldap_init( char *defhost, int defport )
                return( NULL );
        }
 
+       if ( openldap_ldap_global_options.ldo_defbase != NULL ) {
+               ld->ld_options.ldo_defbase = strdup(
+                       openldap_ldap_global_options.ldo_defbase);
+       }
+
 #ifdef LDAP_API_FEATURE_X_OPENLDAP_V2_REFERRALS
        if (( ld->ld_selectinfo = ldap_new_select_info()) == NULL ) {
                free( (char*) ld->ld_options.ldo_defhost );
-               free( (char*) ld->ld_options.ldo_defbase );
+               if ( ld->ld_options.ldo_defbase == NULL ) {
+                       free( (char*) ld->ld_options.ldo_defbase );
+               }
                free( (char*) ld );
            WSACleanup( );
                return( NULL );