aboutsummaryrefslogtreecommitdiff
path: root/cmd/stvanity/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/stvanity/main.go')
-rw-r--r--cmd/stvanity/main.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/stvanity/main.go b/cmd/stvanity/main.go
index 5ca9b2624..2bd840a3e 100644
--- a/cmd/stvanity/main.go
+++ b/cmd/stvanity/main.go
@@ -26,8 +26,8 @@ import (
"sync/atomic"
"time"
+ _ "github.com/syncthing/syncthing/lib/automaxprocs"
"github.com/syncthing/syncthing/lib/protocol"
- _ "go.uber.org/automaxprocs"
)
type result struct {
@@ -158,7 +158,7 @@ func saveCert(priv interface{}, derBytes []byte) {
os.Exit(1)
}
- keyOut, err := os.OpenFile("key.pem", os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0600)
+ keyOut, err := os.OpenFile("key.pem", os.O_WRONLY|os.O_CREATE|os.O_TRUNC, 0o600)
if err != nil {
fmt.Println(err)
os.Exit(1)