1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-23 09:57:40 +03:00

s3: Make ads_do_search_retry_args() static

This commit is contained in:
Volker Lendecke 2010-11-16 19:10:50 +01:00
parent e3017e6411
commit cdf52d56d5
2 changed files with 4 additions and 8 deletions

View File

@ -63,10 +63,6 @@ ADS_STATUS ads_do_search_retry(ADS_STRUCT *ads, const char *bind_path,
int scope,
const char *expr,
const char **attrs, LDAPMessage **res);
ADS_STATUS ads_do_search_retry_args(ADS_STRUCT *ads, const char *bind_path,
int scope, const char *expr,
const char **attrs, void *args,
LDAPMessage **res);
ADS_STATUS ads_search_retry(ADS_STRUCT *ads, LDAPMessage **res,
const char *expr, const char **attrs);
ADS_STATUS ads_search_retry_dn(ADS_STRUCT *ads, LDAPMessage **res,

View File

@ -121,7 +121,7 @@ static ADS_STATUS ads_do_search_retry_internal(ADS_STRUCT *ads, const char *bind
return ads_do_search_retry_internal(ads, bind_path, scope, expr, attrs, NULL, res);
}
ADS_STATUS ads_do_search_retry_args(ADS_STRUCT *ads, const char *bind_path,
static ADS_STATUS ads_do_search_retry_args(ADS_STRUCT *ads, const char *bind_path,
int scope, const char *expr,
const char **attrs, void *args,
LDAPMessage **res)