diff options
author | Luke Leighton <lkcl@samba.org> | 1998-12-04 21:48:06 +0000 |
---|---|---|
committer | Luke Leighton <lkcl@samba.org> | 1998-12-04 21:48:06 +0000 |
commit | 165b15a8cacc4bc7cf8cc0b9aaabb6b92cef7fdb (patch) | |
tree | f0e6ef0baa88c4f3f29fe904ca3df20145b9f90c /source/rpc_parse/parse_lsa.c | |
parent | eacc5e581af2b4de24186b9be3238b352c54effe (diff) | |
download | samba-165b15a8cacc4bc7cf8cc0b9aaabb6b92cef7fdb.tar.gz samba-165b15a8cacc4bc7cf8cc0b9aaabb6b92cef7fdb.tar.xz samba-165b15a8cacc4bc7cf8cc0b9aaabb6b92cef7fdb.zip |
- oops, i got "add alias member" and "delete alias member" swapped.
- samr_enum_dom_users, the first 4 bytes is some sort of garbage,
nt5-beta2 clears them out to zeros whereas nt4 does not.
fixed bug where we were assuming that the first 4 bytes of a
response _had_ to be non-zero.
- cli_lsarpc.c: forgot to append the rid on the lsa_lookup_names()
client call.
- added in "addaliasmem" and "addgroupmem" commands. the addaliasmem
command actually turned out to be a "delaliasmem" :-) :-)
- parse_lsa.c: moved assert array check to after the size of useable
array space is set...
Diffstat (limited to 'source/rpc_parse/parse_lsa.c')
-rw-r--r-- | source/rpc_parse/parse_lsa.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source/rpc_parse/parse_lsa.c b/source/rpc_parse/parse_lsa.c index 7fcdeccec8b..9781e3cfabb 100644 --- a/source/rpc_parse/parse_lsa.c +++ b/source/rpc_parse/parse_lsa.c @@ -677,11 +677,11 @@ void make_q_lookup_names(LSA_Q_LOOKUP_NAMES *q_l, POLICY_HND *hnd, memcpy(&(q_l->pol), hnd, sizeof(q_l->pol)); - SMB_ASSERT_ARRAY(q_l->uni_name, q_l->num_entries); - q_l->num_entries = num_names; q_l->num_entries2 = num_names; + SMB_ASSERT_ARRAY(q_l->uni_name, q_l->num_entries); + for (i = 0; i < num_names; i++) { int len = strlen(names[i]); |