1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-07 17:18:11 +03:00

Missed another condition on a while loop.

(This used to be commit 8ff52aec87)
This commit is contained in:
Tim Potter 2003-04-25 03:53:20 +00:00
parent e4e1bface8
commit 91f650fb5b

View File

@ -1016,7 +1016,7 @@ rpc_group_list_internals(const DOM_SID *domain_sid, struct cli_state *cli,
else
printf("%s\n", groups[i].acct_name);
}
} while (!NT_STATUS_IS_OK(result));
} while (NT_STATUS_V(result) == NT_STATUS_V(STATUS_MORE_ENTRIES));
done:
return result;