mirror of
https://github.com/samba-team/samba.git
synced 2025-03-03 12:58:35 +03:00
rpcclient: Add tiny fix for cmd_samr_get_dispinfo_idx().
Guenther (This used to be commit c15b5d73badafdc93066197aefaaaa72e37a8b99)
This commit is contained in:
parent
5cc22bc59f
commit
12b9be6d5e
@ -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…
x
Reference in New Issue
Block a user