diff options
author | Volker Lendecke <vl@samba.org> | 2011-02-12 16:33:26 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-02-13 12:11:52 +0100 |
commit | 6b492a1741b8bdcfc61e5fded36e818fa7795b76 (patch) | |
tree | b2857623f3d6550a5997cd7083cee2e067248fe2 | |
parent | 78525270733a79a6e2def662d7340382cb648414 (diff) | |
download | samba-6b492a1741b8bdcfc61e5fded36e818fa7795b76.tar.gz samba-6b492a1741b8bdcfc61e5fded36e818fa7795b76.tar.bz2 samba-6b492a1741b8bdcfc61e5fded36e818fa7795b76.zip |
s3: Convert tldap_add_mod_blobs args to "array, count"
-rw-r--r-- | source3/include/tldap_util.h | 2 | ||||
-rw-r--r-- | source3/lib/tldap_util.c | 11 | ||||
-rw-r--r-- | source3/passdb/pdb_ads.c | 2 |
3 files changed, 8 insertions, 7 deletions
diff --git a/source3/include/tldap_util.h b/source3/include/tldap_util.h index 2e0da85f53..5b2d025cc5 100644 --- a/source3/include/tldap_util.h +++ b/source3/include/tldap_util.h @@ -35,7 +35,7 @@ bool tldap_pull_guid(struct tldap_message *msg, const char *attribute, struct GUID *guid); bool tldap_add_mod_blobs(TALLOC_CTX *mem_ctx, struct tldap_mod **pmods, int mod_op, const char *attrib, - int num_values, DATA_BLOB *values); + DATA_BLOB *values, int num_values); bool tldap_add_mod_str(TALLOC_CTX *mem_ctx, struct tldap_mod **pmods, int mod_op, const char *attrib, const char *str); bool tldap_make_mod_blob(struct tldap_message *existing, TALLOC_CTX *mem_ctx, diff --git a/source3/lib/tldap_util.c b/source3/lib/tldap_util.c index 7f1e916338..f46cfc834d 100644 --- a/source3/lib/tldap_util.c +++ b/source3/lib/tldap_util.c @@ -131,9 +131,10 @@ static bool tldap_add_blob_vals(TALLOC_CTX *mem_ctx, struct tldap_mod *mod, return true; } -bool tldap_add_mod_blobs(TALLOC_CTX *mem_ctx, struct tldap_mod **pmods, +bool tldap_add_mod_blobs(TALLOC_CTX *mem_ctx, + struct tldap_mod **pmods, int mod_op, const char *attrib, - int num_newvals, DATA_BLOB *newvals) + DATA_BLOB *newvals, int num_newvals) { struct tldap_mod new_mod; struct tldap_mod *mods = *pmods; @@ -198,7 +199,7 @@ bool tldap_add_mod_str(TALLOC_CTX *mem_ctx, struct tldap_mod **pmods, return false; } - ret = tldap_add_mod_blobs(mem_ctx, pmods, mod_op, attrib, 1, &utf8); + ret = tldap_add_mod_blobs(mem_ctx, pmods, mod_op, attrib, &utf8, 1); TALLOC_FREE(utf8.data); return ret; } @@ -248,7 +249,7 @@ static bool tldap_make_mod_blob_int(struct tldap_message *existing, DEBUG(10, ("smbldap_make_mod_blob: deleting attribute |%s|\n", attrib)); if (!tldap_add_mod_blobs(mem_ctx, pmods, TLDAP_MOD_DELETE, - attrib, 1, &oldval)) { + attrib, &oldval, 1)) { return false; } } @@ -261,7 +262,7 @@ static bool tldap_make_mod_blob_int(struct tldap_message *existing, DEBUG(10, ("smbldap_make_mod: adding attribute |%s| value len " "%d\n", attrib, (int)newval.length)); if (!tldap_add_mod_blobs(mem_ctx, pmods, TLDAP_MOD_ADD, - attrib, 1, &newval)) { + attrib, &newval, 1)) { return false; } } diff --git a/source3/passdb/pdb_ads.c b/source3/passdb/pdb_ads.c index 108629d6e9..867ad48bdd 100644 --- a/source3/passdb/pdb_ads.c +++ b/source3/passdb/pdb_ads.c @@ -331,7 +331,7 @@ static bool pdb_ads_init_ads_from_sam(struct pdb_ads_state *state, blob = data_blob_const(pw_utf16, pw_utf16_len); ret &= tldap_add_mod_blobs(mem_ctx, pmods, TLDAP_MOD_REPLACE, - "unicodePwd", 1, &blob); + "unicodePwd", &blob, 1); if (ret) { *pnum_mods = talloc_array_length(*pmods); } |