diff options
author | Volker Lendecke <vl@samba.org> | 2009-06-08 20:36:49 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-06-08 21:14:10 +0200 |
commit | 9b42c5ca79b925fa01f9bd9e89de2c1061cf72ba (patch) | |
tree | 3fdf4d74aea33538fa507dcab8cd1529700a0938 /source3/include | |
parent | af82489b41c8fa621dc4c8abe5bfdf107b6bec43 (diff) | |
download | samba-9b42c5ca79b925fa01f9bd9e89de2c1061cf72ba.tar.gz samba-9b42c5ca79b925fa01f9bd9e89de2c1061cf72ba.tar.bz2 samba-9b42c5ca79b925fa01f9bd9e89de2c1061cf72ba.zip |
Add tlda_add_mod_str
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/tldap_util.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/source3/include/tldap_util.h b/source3/include/tldap_util.h index 1c993769d7..06b1036474 100644 --- a/source3/include/tldap_util.h +++ b/source3/include/tldap_util.h @@ -34,6 +34,8 @@ bool tldap_pull_binsid(struct tldap_message *msg, const char *attribute, 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); +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, int *pnum_mods, struct tldap_mod **pmods, const char *attrib, DATA_BLOB newval); |