Merge pull request #532 from stefins/chmod-file

Chmod new file based on the source file mode
This commit is contained in:
Zack 2023-02-10 11:58:59 -08:00 committed by GitHub
commit faf64aadf1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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 {