diff options
author | Günther Deschner <gd@samba.org> | 2011-04-06 11:33:12 +0200 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2011-04-06 11:53:56 +0200 |
commit | 02c6940964f8db0c7e78b9e6d8e4a7a404331285 (patch) | |
tree | d111e760ff74bb422c3c68c0c5b7b4eac5d39bb4 /source3/passdb/pdb_ipa.c | |
parent | c4974eec01d32f2c777aa3fca02210bb6c255d79 (diff) | |
download | samba-02c6940964f8db0c7e78b9e6d8e4a7a404331285.tar.gz samba-02c6940964f8db0c7e78b9e6d8e4a7a404331285.tar.xz samba-02c6940964f8db0c7e78b9e6d8e4a7a404331285.zip |
s3-ipasam: rename of smbldap_make_mod_blob to _smbldap_make_mod_blob.
Guenther
Signed-off-by: Günther Deschner <gd@samba.org>
Diffstat (limited to 'source3/passdb/pdb_ipa.c')
-rw-r--r-- | source3/passdb/pdb_ipa.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source3/passdb/pdb_ipa.c b/source3/passdb/pdb_ipa.c index 5bcb63c3a21..f8ae30319c2 100644 --- a/source3/passdb/pdb_ipa.c +++ b/source3/passdb/pdb_ipa.c @@ -416,7 +416,7 @@ static bool smbldap_make_mod_uint32_t(LDAP *ldap_struct, LDAPMessage *entry, return true; } -static bool smbldap_make_mod_blob(LDAP *ldap_struct, LDAPMessage *entry, +static bool _smbldap_make_mod_blob(LDAP *ldap_struct, LDAPMessage *entry, LDAPMod ***mods, const char *attribute, DATA_BLOB blob) { @@ -505,7 +505,7 @@ static NTSTATUS ipasam_set_trusted_domain(struct pdb_methods *methods, } if (td->trust_auth_outgoing.data != NULL) { - res = smbldap_make_mod_blob(priv2ld(ldap_state), entry, + res = _smbldap_make_mod_blob(priv2ld(ldap_state), entry, &mods, LDAP_ATTRIBUTE_TRUST_AUTH_OUTGOING, td->trust_auth_outgoing); @@ -515,7 +515,7 @@ static NTSTATUS ipasam_set_trusted_domain(struct pdb_methods *methods, } if (td->trust_auth_incoming.data != NULL) { - res = smbldap_make_mod_blob(priv2ld(ldap_state), entry, + res = _smbldap_make_mod_blob(priv2ld(ldap_state), entry, &mods, LDAP_ATTRIBUTE_TRUST_AUTH_INCOMING, td->trust_auth_incoming); @@ -525,7 +525,7 @@ static NTSTATUS ipasam_set_trusted_domain(struct pdb_methods *methods, } if (td->trust_forest_trust_info.data != NULL) { - res = smbldap_make_mod_blob(priv2ld(ldap_state), entry, + res = _smbldap_make_mod_blob(priv2ld(ldap_state), entry, &mods, LDAP_ATTRIBUTE_TRUST_FOREST_TRUST_INFO, td->trust_forest_trust_info); |