1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-14 19:24:43 +03:00

cli_samr_query_dispinfo() can return STATUS_MORE_ENTRIES which isn't an

entry.
(This used to be commit 12e44e40298b5469f6f1fea3495cfa023305411d)
This commit is contained in:
Tim Potter 2001-07-23 07:20:46 +00:00
parent 36d3a9d5dd
commit 516eeb0b79

View File

@ -778,7 +778,10 @@ uint32 cli_samr_query_dispinfo(struct cli_state *cli, TALLOC_CTX *mem_ctx,
/* Return output parameters */
if ((result = r.status) != NT_STATUS_NOPROBLEMO) {
result = r.status;
if (result != NT_STATUS_NOPROBLEMO &&
result != STATUS_MORE_ENTRIES) {
goto done;
}