From ab94e7eb8a6afc81b90fad0a751ab4e3e3735060 Mon Sep 17 00:00:00 2001 From: Markus Linnala Date: Thu, 3 Oct 2019 16:46:37 +0300 Subject: [PATCH] style: gofmt -w -s -d dnscrypt-proxy --- dnscrypt-proxy/netprobe_windows.go | 2 +- dnscrypt-proxy/systemd_linux.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/dnscrypt-proxy/netprobe_windows.go b/dnscrypt-proxy/netprobe_windows.go index ae22d944..772433f4 100644 --- a/dnscrypt-proxy/netprobe_windows.go +++ b/dnscrypt-proxy/netprobe_windows.go @@ -3,7 +3,7 @@ package main import ( "errors" "net" - "time" + "time" "github.com/jedisct1/dlog" ) diff --git a/dnscrypt-proxy/systemd_linux.go b/dnscrypt-proxy/systemd_linux.go index 7b770bde..d9d46568 100644 --- a/dnscrypt-proxy/systemd_linux.go +++ b/dnscrypt-proxy/systemd_linux.go @@ -11,7 +11,7 @@ func (proxy *Proxy) SystemDListeners() error { files := activation.Files(true) if len(files) > 0 { - if (len(proxy.userName) > 0 || proxy.child) { + if len(proxy.userName) > 0 || proxy.child { dlog.Fatal("Systemd activated sockets are incompatible with privilege dropping. Remove activated sockets and fill `listen_addresses` in the dnscrypt-proxy configuration file instead.") } dlog.Warn("Systemd sockets are untested and unsupported - use at your own risk")