From 9fffb6ab5b9eebdc3173ad63b90aec974f18ab53 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 26 Feb 2006 12:25:34 +0000 Subject: r13693: More Solaris/LDAP fixes from Bjoern (This used to be commit 7c098ca0ae4c7e11c7100fb09b42ce716beffb56) --- source3/lib/smbldap.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source3/lib/smbldap.c') diff --git a/source3/lib/smbldap.c b/source3/lib/smbldap.c index c045be51c5..e54464a49b 100644 --- a/source3/lib/smbldap.c +++ b/source3/lib/smbldap.c @@ -999,7 +999,7 @@ static int smbldap_open(struct smbldap_state *ldap_state) #endif if (reopen) { /* the other end has died. reopen. */ - ldap_unbind_ext(ldap_state->ldap_struct, NULL, NULL); + ldap_unbind(ldap_state->ldap_struct); ldap_state->ldap_struct = NULL; ldap_state->last_ping = (time_t)0; } else { @@ -1017,7 +1017,7 @@ static int smbldap_open(struct smbldap_state *ldap_state) } if ((rc = smbldap_connect_system(ldap_state, ldap_state->ldap_struct))) { - ldap_unbind_ext(ldap_state->ldap_struct, NULL, NULL); + ldap_unbind(ldap_state->ldap_struct); ldap_state->ldap_struct = NULL; return rc; } @@ -1039,7 +1039,7 @@ static NTSTATUS smbldap_close(struct smbldap_state *ldap_state) return NT_STATUS_INVALID_PARAMETER; if (ldap_state->ldap_struct != NULL) { - ldap_unbind_ext(ldap_state->ldap_struct, NULL, NULL); + ldap_unbind(ldap_state->ldap_struct); ldap_state->ldap_struct = NULL; } -- cgit