Fixed a conversion bug.

geesefs-0-30-9
Aaron Jacobs 2015-07-24 11:49:37 +10:00
parent ff42037981
commit 503825fd5f
1 changed files with 1 additions and 1 deletions

View File

@ -439,7 +439,7 @@ func convertAttributes(
out.Gid = in.Gid
// Set the mode.
out.Mode = uint32(in.Mode) & 077
out.Mode = uint32(in.Mode) & 0777
switch {
default:
out.Mode |= syscall.S_IFREG