diff options
-rw-r--r-- | source3/libads/ldap_schema.c | 11 | ||||
-rw-r--r-- | source3/libads/ldap_schema.h | 4 |
2 files changed, 7 insertions, 8 deletions
diff --git a/source3/libads/ldap_schema.c b/source3/libads/ldap_schema.c index 66c9bf4b57..db5d35ec92 100644 --- a/source3/libads/ldap_schema.c +++ b/source3/libads/ldap_schema.c @@ -25,10 +25,13 @@ #ifdef HAVE_LDAP -ADS_STATUS ads_get_attrnames_by_oids(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, - const char *schema_path, - const char **OIDs, size_t num_OIDs, - char ***OIDs_out, char ***names, size_t *count) +static ADS_STATUS ads_get_attrnames_by_oids(ADS_STRUCT *ads, + TALLOC_CTX *mem_ctx, + const char *schema_path, + const char **OIDs, + size_t num_OIDs, + char ***OIDs_out, char ***names, + size_t *count) { ADS_STATUS status; LDAPMessage *res = NULL; diff --git a/source3/libads/ldap_schema.h b/source3/libads/ldap_schema.h index 90ce203cf5..2a8cec264d 100644 --- a/source3/libads/ldap_schema.h +++ b/source3/libads/ldap_schema.h @@ -46,10 +46,6 @@ enum wb_posix_mapping { /* The following definitions come from libads/ldap_schema.c */ -ADS_STATUS ads_get_attrnames_by_oids(ADS_STRUCT *ads, TALLOC_CTX *mem_ctx, - const char *schema_path, - const char **OIDs, size_t num_OIDs, - char ***OIDs_out, char ***names, size_t *count); const char *ads_get_attrname_by_guid(ADS_STRUCT *ads, const char *schema_path, TALLOC_CTX *mem_ctx, |