1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-27 03:21:53 +03:00

Fix counter mismatch in lsa_LookupNames server.

Guenther
(This used to be commit 80fd085c34)
This commit is contained in:
Günther Deschner 2008-03-04 13:16:02 +01:00
parent 959cb482d3
commit 253dc4d728

View File

@ -1036,10 +1036,10 @@ done:
}
}
*r->out.count = num_entries;
*r->out.count = mapped_count;
*r->out.domains = domains;
r->out.sids->sids = rids;
r->out.sids->count = mapped_count;
r->out.sids->count = num_entries;
return status;
}