mirror of
https://github.com/samba-team/samba.git
synced 2025-01-12 09:18:10 +03:00
rpcclient: Add tiny fix for cmd_samr_get_dispinfo_idx().
Guenther
This commit is contained in:
parent
a132cc3c62
commit
c15b5d73ba
@ -2612,8 +2612,9 @@ static NTSTATUS cmd_samr_get_dispinfo_idx(struct rpc_pipe_client *cli,
|
||||
&name,
|
||||
&idx);
|
||||
|
||||
if (NT_STATUS_IS_OK(status)) {
|
||||
printf("idx: %d\n", idx);
|
||||
if (NT_STATUS_IS_OK(status) ||
|
||||
NT_STATUS_EQUAL(status, NT_STATUS_NO_MORE_ENTRIES)) {
|
||||
printf("idx: %d (0x%08x)\n", idx, idx);
|
||||
}
|
||||
done:
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user