aboutsummaryrefslogtreecommitdiffhomepage
path: root/cmd/sharefs/main.go
diff options
context:
space:
mode:
authorOphestra <cat@gensokyo.uk>2025-12-26 03:19:32 +0900
committerOphestra <cat@gensokyo.uk>2025-12-26 03:19:32 +0900
commitd597592e1f3bd64b586257f47315390042a9def1 (patch)
treea5f925d4e6e36a58fc8eb035766e07659b3af599 /cmd/sharefs/main.go
parent056f5b12d447e9cf113ab6fd3fbf3e9cfe0a1b18 (diff)
cmd/sharefs: rename fuse-helper to fuse-operations
This is not really just library wrapper functions, but instead implements the callbacks, so fuse-operations makes more sense. Signed-off-by: Ophestra <cat@gensokyo.uk>
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...)))
}