aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/sharefs/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/sharefs/main.go')
-rw-r--r--cmd/sharefs/main.go4
1 files changed, 0 insertions, 4 deletions
diff --git a/cmd/sharefs/main.go b/cmd/sharefs/main.go
index 44a7e510..60924e06 100644
--- a/cmd/sharefs/main.go
+++ b/cmd/sharefs/main.go
@@ -5,7 +5,6 @@ import (
"os"
"path"
"runtime"
- "syscall"
)
// executableName is the [path.Base] name of the executable that started the current process.
@@ -24,8 +23,5 @@ func main() {
log.SetFlags(0)
log.SetPrefix(executableName + ": ")
- // don't mask creation mode, kernel already did that
- syscall.Umask(0)
-
os.Exit(_main(len(os.Args), copyStrings(os.Args...)))
}