diff options
author | Tim Potter <tpot@samba.org> | 2001-06-06 07:35:37 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2001-06-06 07:35:37 +0000 |
commit | 0ae53c127a2d4d44a0c4fc5870c3d8ae79512bba (patch) | |
tree | 984e7b62ddbbe6034153a7f0979cf4b3585fa081 /source3 | |
parent | 971cbd57dc1a69d75082a64e2b5b9793a9a64e3f (diff) | |
download | samba-0ae53c127a2d4d44a0c4fc5870c3d8ae79512bba.tar.gz samba-0ae53c127a2d4d44a0c4fc5870c3d8ae79512bba.tar.bz2 samba-0ae53c127a2d4d44a0c4fc5870c3d8ae79512bba.zip |
Converted SAMR_Q_LOOKUP_NAMES structure to tallocated memory instead of
static arrays.
(This used to be commit d122568b35f63e3da7bb1fad6a4e72922cf6bca3)
Diffstat (limited to 'source3')
-rw-r--r-- | source3/include/rpc_samr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/rpc_samr.h b/source3/include/rpc_samr.h index 0a789752bb..d996170200 100644 --- a/source3/include/rpc_samr.h +++ b/source3/include/rpc_samr.h @@ -1249,8 +1249,8 @@ typedef struct q_samr_lookup_names_info uint32 ptr; /* 0x0000 0000 - 32 bit unknown */ uint32 num_names2; /* number of names being looked up */ - UNIHDR hdr_name[MAX_LOOKUP_SIDS]; /* unicode account name header */ - UNISTR2 uni_name[MAX_LOOKUP_SIDS]; /* unicode account name string */ + UNIHDR *hdr_name; /* unicode account name header */ + UNISTR2 *uni_name; /* unicode account name string */ } SAMR_Q_LOOKUP_NAMES; |