2
2
mirror of https://github.com/octoleo/restic.git synced 2024-05-31 16:10:49 +00:00

Fix file mode for data blobs

This commit is contained in:
Alexander Neumann 2015-03-14 20:19:52 +01:00
parent e896a33c43
commit 12c8522b33
2 changed files with 2 additions and 2 deletions

View File

@ -215,7 +215,7 @@ func (b *Local) renameFile(file *os.File, t Type, id ID) error {
return err
}
return os.Chmod(filename, fi.Mode()&os.FileMode(^uint32(0111)))
return os.Chmod(filename, fi.Mode()&os.FileMode(^uint32(0222)))
}
// Construct directory for given Type.

View File

@ -323,7 +323,7 @@ func (r *SFTP) renameFile(oldname string, t Type, id ID) error {
return err
}
return r.c.Chmod(filename, fi.Mode()&os.FileMode(^uint32(0111)))
return r.c.Chmod(filename, fi.Mode()&os.FileMode(^uint32(0222)))
}
// Construct directory for given Type.