1
0
mirror of https://github.com/samba-team/samba.git synced 2025-02-05 21:57:51 +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 used to be commit 3482bb1ef57e60397df8dcf1b29999161359c42a)
This commit is contained in:
Volker Lendecke 2006-07-19 15:05:06 +00:00 committed by Gerald (Jerry) Carter
parent 5faee071cb
commit 8cfb182bdb

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))