mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2024-01-19 02:48:24 +00:00
Fix var assignment
This commit is contained in:
parent
5a761bb7a4
commit
0aaaa9b470
|
@ -100,7 +100,7 @@ func RunMount(option *MountOptions, umask os.FileMode) bool {
|
|||
uid, gid := uint32(0), uint32(0)
|
||||
mountMode := os.ModeDir | 0777
|
||||
if err == nil {
|
||||
mountMode := os.ModeDir | os.FileMode(0777)&^umask
|
||||
mountMode = os.ModeDir | os.FileMode(0777)&^umask
|
||||
uid, gid = util.GetFileUidGid(fileInfo)
|
||||
fmt.Printf("mount point owner uid=%d gid=%d mode=%s\n", uid, gid, fileInfo.Mode())
|
||||
} else {
|
||||
|
|
Loading…
Reference in a new issue