diff options
| author | Ophestra <cat@gensokyo.uk> | 2025-12-26 03:19:32 +0900 |
|---|---|---|
| committer | Ophestra <cat@gensokyo.uk> | 2025-12-26 03:19:32 +0900 |
| commit | d597592e1f3bd64b586257f47315390042a9def1 (patch) | |
| tree | a5f925d4e6e36a58fc8eb035766e07659b3af599 /cmd/sharefs/main.go | |
| parent | 056f5b12d447e9cf113ab6fd3fbf3e9cfe0a1b18 (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.go | 4 |
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...))) } |
