aboutsummaryrefslogtreecommitdiffstats
path: root/uapi_darwin.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--uapi_darwin.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/uapi_darwin.go b/uapi_darwin.go
index a5f2c3b..1441960 100644
--- a/uapi_darwin.go
+++ b/uapi_darwin.go
@@ -144,7 +144,7 @@ func UAPIOpen(name string) (*os.File, error) {
// check if path exist
- err := os.MkdirAll(socketDirectory, 0600)
+ err := os.MkdirAll(socketDirectory, 0700)
if err != nil && !os.IsExist(err) {
return nil, err
}