diff options
author | Volker Lendecke <vlendec@samba.org> | 2006-11-21 02:21:45 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 12:15:57 -0500 |
commit | 202f63e476fc1dc60d9f1271673b292288cfb436 (patch) | |
tree | 4462f5deb76f7115067a1bdcb4baf5cb23e21cb0 /source3/lib | |
parent | 95bfb975472f5cf63bb0ef2d19ae89945232883f (diff) | |
download | samba-202f63e476fc1dc60d9f1271673b292288cfb436.tar.gz samba-202f63e476fc1dc60d9f1271673b292288cfb436.tar.bz2 samba-202f63e476fc1dc60d9f1271673b292288cfb436.zip |
r19811: Decode REG_MULTI_SZ and REG_BINARY
(This used to be commit 679330175185f8504bb5968339dcc7cb20d9140c)
Diffstat (limited to 'source3/lib')
-rw-r--r-- | source3/lib/util_reg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/util_reg.c b/source3/lib/util_reg.c index 80b52924b6..c74a573149 100644 --- a/source3/lib/util_reg.c +++ b/source3/lib/util_reg.c @@ -69,7 +69,7 @@ const char *reg_type_lookup(uint32 type) } NTSTATUS reg_pull_multi_sz(TALLOC_CTX *mem_ctx, const void *buf, size_t len, - int *num_values, char ***values) + uint32 *num_values, char ***values) { const smb_ucs2_t *p = (const smb_ucs2_t *)buf; *num_values = 0; |