1
0
mirror of https://github.com/samba-team/samba.git synced 2024-12-22 13:34:15 +03:00

s3:libnet: Remove always‐false comparison (CID 241309)

Signed-off-by: Joseph Sutton <josephsutton@catalyst.net.nz>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
This commit is contained in:
Joseph Sutton 2023-10-06 15:25:13 +13:00 committed by Andrew Bartlett
parent 728177088c
commit 0c2d2f833e

View File

@ -502,7 +502,7 @@ static NTSTATUS parse_object(TALLOC_CTX *mem_ctx,
}
}
if ((kvno < 0) && (kvno < pwd_history_len)) {
if (kvno < pwd_history_len) {
return status;
}