Chmod new file based on the source file mode

This commit is contained in:
stefins 2023-02-10 14:48:44 +05:30
parent 8b9977a7c4
commit 24679d4e02
No known key found for this signature in database
GPG Key ID: CC24E0B98BA67B50
1 changed files with 4 additions and 0 deletions

View File

@ -1386,6 +1386,10 @@ func (c *Client) recipientInitializeFile() (err error) {
log.Error(errOpen)
return errOpen
}
errChmod := os.Chmod(pathToFile, c.FilesToTransfer[c.FilesToTransferCurrentNum].Mode.Perm())
if errChmod != nil {
log.Error(errChmod)
}
truncate = true
}
if truncate {