diff options
author | Tim Potter <tpot@samba.org> | 2003-04-25 03:53:20 +0000 |
---|---|---|
committer | Tim Potter <tpot@samba.org> | 2003-04-25 03:53:20 +0000 |
commit | 91f650fb5b5da01ead960c1709f7545cf6a3feb4 (patch) | |
tree | 1ccd645c9436c99ef9c45308cb95688b7fddadf9 /source3/utils | |
parent | e4e1bface82ca48834d6dd4a13bd8d429a5534a1 (diff) | |
download | samba-91f650fb5b5da01ead960c1709f7545cf6a3feb4.tar.gz samba-91f650fb5b5da01ead960c1709f7545cf6a3feb4.tar.bz2 samba-91f650fb5b5da01ead960c1709f7545cf6a3feb4.zip |
Missed another condition on a while loop.
(This used to be commit 8ff52aec87a2770c5d7de50786307d246b4be6af)
Diffstat (limited to 'source3/utils')
-rw-r--r-- | source3/utils/net_rpc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/utils/net_rpc.c b/source3/utils/net_rpc.c index cf57004a81..e3e79b0e6c 100644 --- a/source3/utils/net_rpc.c +++ b/source3/utils/net_rpc.c @@ -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; |