summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2003-05-07 22:56:02 +0000
committerAndrew Bartlett <abartlet@samba.org>2003-05-07 22:56:02 +0000
commitb4645bf0661dadcd077b21bb6f6452ed8b2eb726 (patch)
tree845761a5df81584d5315150664411c166fd3fbe9
parentf6d7c279bc8354202f2a9b39fec4a4c8ace368a3 (diff)
downloadsamba-b4645bf0661dadcd077b21bb6f6452ed8b2eb726.tar.gz
samba-b4645bf0661dadcd077b21bb6f6452ed8b2eb726.tar.xz
samba-b4645bf0661dadcd077b21bb6f6452ed8b2eb726.zip
Fix the spinning bug for 'net rpc user' as well - there are more errors in
this world than 'status more entires'... Also move all the cases to 'NT_STATUS_EQUAL()' to test it. Andrew Bartlett
-rw-r--r--source/utils/net_rpc.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/source/utils/net_rpc.c b/source/utils/net_rpc.c
index cd3cc9cfec1..d5779322047 100644
--- a/source/utils/net_rpc.c
+++ b/source/utils/net_rpc.c
@@ -844,7 +844,7 @@ rpc_user_list_internals(const DOM_SID *domain_sid, struct cli_state *cli,
else
printf("%s\n", user);
}
- } while (!NT_STATUS_IS_OK(result));
+ } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
done:
return result;
@@ -955,7 +955,7 @@ rpc_group_list_internals(const DOM_SID *domain_sid, struct cli_state *cli,
else
printf("%-21.21s\n", groups[i].acct_name);
}
- } while (NT_STATUS_V(result) == NT_STATUS_V(STATUS_MORE_ENTRIES));
+ } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
/* query domain aliases */
do {
result = cli_samr_enum_als_groups(cli, mem_ctx, &domain_pol,
@@ -970,7 +970,7 @@ rpc_group_list_internals(const DOM_SID *domain_sid, struct cli_state *cli,
else
printf("%-21.21s\n", groups[i].acct_name);
}
- } while (NT_STATUS_V(result) == NT_STATUS_V(STATUS_MORE_ENTRIES));
+ } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
cli_samr_close(cli, mem_ctx, &domain_pol);
/* Get builtin policy handle */
@@ -994,7 +994,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_V(result) == NT_STATUS_V(STATUS_MORE_ENTRIES));
+ } while (NT_STATUS_EQUAL(result, STATUS_MORE_ENTRIES));
done:
return result;