Skip to content
Snippets Groups Projects
Commit 77df7c60 authored by Kurt Zeilenga's avatar Kurt Zeilenga
Browse files

Add ldap_unbind_ext_s

parent 89d7b861
No related branches found
No related tags found
No related merge requests found
...@@ -37,6 +37,15 @@ ldap_unbind_ext( ...@@ -37,6 +37,15 @@ ldap_unbind_ext(
return ldap_ld_free( ld, 1, sctrls, cctrls ); return ldap_ld_free( ld, 1, sctrls, cctrls );
} }
int
ldap_unbind_ext_s(
LDAP *ld,
LDAPControl **sctrls,
LDAPControl **cctrls )
{
return ldap_unbind_ext( ld, sctrls, cctrls );
}
int int
ldap_unbind( LDAP *ld ) ldap_unbind( LDAP *ld )
{ {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment