1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-21 18:04:06 +03:00

Missed another condition on a while loop.

This commit is contained in:
Tim Potter -
parent b110c499fa
commit 8ff52aec87

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;