diff options
author | Alexander Bokovoy <ab@samba.org> | 2012-09-11 12:29:49 +0300 |
---|---|---|
committer | Alexander Bokovoy <ab@samba.org> | 2012-09-12 08:49:32 +0200 |
commit | d55980ccad2fec5d88fceb5eef9df8df647f4e9f (patch) | |
tree | b933c1830fa8731bfc1e47337ef7c09ed8cd0c8b | |
parent | 34bd3cba7a809e103b21c64c75230d0dc259382c (diff) | |
download | samba-d55980ccad2fec5d88fceb5eef9df8df647f4e9f.tar.gz samba-d55980ccad2fec5d88fceb5eef9df8df647f4e9f.tar.bz2 samba-d55980ccad2fec5d88fceb5eef9df8df647f4e9f.zip |
s3-pdb: filter out more symbols only used in ldapsam internals
-rw-r--r-- | source3/passdb/ABI/pdb-0.sigs | 1 | ||||
-rwxr-xr-x | source3/wscript_build | 2 |
2 files changed, 1 insertions, 2 deletions
diff --git a/source3/passdb/ABI/pdb-0.sigs b/source3/passdb/ABI/pdb-0.sigs index 2bccc0880e..2b57301df9 100644 --- a/source3/passdb/ABI/pdb-0.sigs +++ b/source3/passdb/ABI/pdb-0.sigs @@ -35,7 +35,6 @@ get_privileges_for_sid_as_set: NTSTATUS (TALLOC_CTX *, PRIVILEGE_SET **, struct get_privileges_for_sids: bool (uint64_t *, struct dom_sid *, int) get_trust_pw_clear: bool (const char *, char **, const char **, enum netr_SchannelType *) get_trust_pw_hash: bool (const char *, uint8_t *, const char **, enum netr_SchannelType *) -get_userattr_list: const char **(TALLOC_CTX *, int) gid_to_sid: void (struct dom_sid *, gid_t) gid_to_unix_groups_sid: void (gid_t, struct dom_sid *) grab_named_mutex: struct named_mutex *(TALLOC_CTX *, const char *, int) diff --git a/source3/wscript_build b/source3/wscript_build index 2903594f06..c7395e765b 100755 --- a/source3/wscript_build +++ b/source3/wscript_build @@ -711,7 +711,7 @@ private_pdb_match.append('!idmap_xids_to_sids') # ldap module is actually three modules merged together: ldapsam, ipa, and nds static_pdb_match = static_pdb_match + ['ldap', 'ipa', 'nds'] -ldapsam_pdb_match = ['!priv2ld', '!smbldap_search_domain_info', '!ldapsam_*', '!groupmap_attr_list*'] +ldapsam_pdb_match = ['!priv2ld', '!smbldap_search_domain_info', '!ldapsam_*', '!groupmap_attr_list*', '!get_userattr_list'] private_pdb_match.append('!pdb_nds_*') private_pdb_match.append('!pdb_init_ldapsam') private_pdb_match = private_pdb_match + ldapsam_pdb_match |