diff options
author | Alexander Bokovoy <ab@samba.org> | 2012-09-06 18:53:00 +0300 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2012-09-07 12:31:42 +0200 |
commit | 140bb288be426bf57fb46a3e4b012a07b6b60fc8 (patch) | |
tree | 2fa2c013ea9896c99fd8b6983328b28ccfdaf3ca /source3/libads | |
parent | edfe0c0d139a69f3463ad0c59b7c1c6df907079a (diff) | |
download | samba-140bb288be426bf57fb46a3e4b012a07b6b60fc8.tar.gz samba-140bb288be426bf57fb46a3e4b012a07b6b60fc8.tar.bz2 samba-140bb288be426bf57fb46a3e4b012a07b6b60fc8.zip |
s3-smbldap: use smbldap_ prefixed functions
Diffstat (limited to 'source3/libads')
-rw-r--r-- | source3/libads/ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/libads/ldap.c b/source3/libads/ldap.c index 946c1a36a7..ca5962cf32 100644 --- a/source3/libads/ldap.c +++ b/source3/libads/ldap.c @@ -731,7 +731,7 @@ got_connection: ldap_set_option(ads->ldap.ld, LDAP_OPT_PROTOCOL_VERSION, &version); if ( lp_ldap_ssl_ads() ) { - status = ADS_ERROR(smb_ldap_start_tls(ads->ldap.ld, version)); + status = ADS_ERROR(smbldap_start_tls(ads->ldap.ld, version)); if (!ADS_ERR_OK(status)) { goto out; } |