1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-04 17:47:26 +03:00

r17136: Fix alignment on lsaquery. This broke in particular level 6, where the client

tried to figure out which role we are.

Needs to go into 23a.

Thanks to Karolin for insisting and setting up the test case :-)

Volker
This commit is contained in:
Volker Lendecke 2006-07-19 15:05:06 +00:00 committed by Gerald (Jerry) Carter
parent 40e2679811
commit 3482bb1ef5

View File

@ -986,6 +986,9 @@ static BOOL lsa_io_query_info_ctr(const char *desc, prs_struct *ps, int depth, L
if(!prs_uint16("info_class", ps, depth, &ctr->info_class))
return False;
if(!prs_align(ps))
return False;
switch (ctr->info_class) {
case 1:
if(!lsa_io_dom_query_1("", &ctr->info.id1, ps, depth))