mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-09 17:38:00 +00:00
scpserver.c: add missing brackets around mask checks
This commit is contained in:
parent
6750eb73ab
commit
ab89fd7847
@ -469,7 +469,7 @@ static void scp_source_push_name(
|
||||
return;
|
||||
}
|
||||
} else {
|
||||
if (!attrs.flags & SSH_FILEXFER_ATTR_SIZE) {
|
||||
if (!(attrs.flags & SSH_FILEXFER_ATTR_SIZE)) {
|
||||
scp_source_err(scp, "unable to read file size for %.*s",
|
||||
PTRLEN_PRINTF(pathname));
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user