diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-02-08 10:36:13 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 11:09:58 -0500 |
commit | 7fc2c0befbaea3af36433a7ad9cc46358cf46139 (patch) | |
tree | 3e8a5f72cc7676ff81642e0d967a03415e15cd4b /source3 | |
parent | 1b14d3b69754ddfe8a258c8accb65b01f16e880b (diff) | |
download | samba-7fc2c0befbaea3af36433a7ad9cc46358cf46139.tar.gz samba-7fc2c0befbaea3af36433a7ad9cc46358cf46139.tar.bz2 samba-7fc2c0befbaea3af36433a7ad9cc46358cf46139.zip |
r13389: get_ldap_filter is only used once, make it static
(This used to be commit d3b66fb8712e41a331ccfb0f52f187382769b41e)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/passdb/pdb_ldap.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/passdb/pdb_ldap.c b/source3/passdb/pdb_ldap.c index a21e976803..608cd8bc8c 100644 --- a/source3/passdb/pdb_ldap.c +++ b/source3/passdb/pdb_ldap.c @@ -3875,7 +3875,7 @@ static NTSTATUS ldapsam_lookup_rids(struct pdb_methods *methods, return result; } -char *get_ldap_filter(TALLOC_CTX *mem_ctx, const char *username) +static char *get_ldap_filter(TALLOC_CTX *mem_ctx, const char *username) { char *filter = NULL; char *escaped = NULL; |