mirror of
https://git.tartarus.org/simon/putty.git
synced 2025-01-26 09:42:25 +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;
|
return;
|
||||||
}
|
}
|
||||||
} else {
|
} 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",
|
scp_source_err(scp, "unable to read file size for %.*s",
|
||||||
PTRLEN_PRINTF(pathname));
|
PTRLEN_PRINTF(pathname));
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user