diff options
author | Volker Lendecke <vl@samba.org> | 2011-02-12 16:51:08 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2011-02-13 12:11:52 +0100 |
commit | 158c1e315b2b680dad56d1b14ccfd4679c04c8bc (patch) | |
tree | c447bf6f0dbc6086d19a29916716b2615866afb1 /source3/include | |
parent | 6375e6993e38483fe2dfb3ce5d039b20b950b438 (diff) | |
download | samba-158c1e315b2b680dad56d1b14ccfd4679c04c8bc.tar.gz samba-158c1e315b2b680dad56d1b14ccfd4679c04c8bc.tar.bz2 samba-158c1e315b2b680dad56d1b14ccfd4679c04c8bc.zip |
s3: Convert tldap_make_mod_fmt args to "array, count"
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/tldap_util.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/tldap_util.h b/source3/include/tldap_util.h index 72f9ae2114..d0268fe1d6 100644 --- a/source3/include/tldap_util.h +++ b/source3/include/tldap_util.h @@ -42,7 +42,7 @@ bool tldap_make_mod_blob(struct tldap_message *existing, TALLOC_CTX *mem_ctx, struct tldap_mod **pmods, int *pnum_mods, const char *attrib, DATA_BLOB newval); bool tldap_make_mod_fmt(struct tldap_message *existing, TALLOC_CTX *mem_ctx, - int *pnum_mods, struct tldap_mod **pmods, + struct tldap_mod **pmods, int *pnum_mods, const char *attrib, const char *fmt, ...); const char *tldap_errstr(TALLOC_CTX *mem_ctx, struct tldap_context *ld, |