From 4a69f3987f81497513f9ea9f5ae75a17372c0c2b Mon Sep 17 00:00:00 2001 From: Jakob Borg Date: Tue, 7 Jun 2016 07:31:43 +0000 Subject: [PATCH] cmd/relaysrv: Fix lint warnings GitHub-Pull-Request: https://github.com/syncthing/syncthing/pull/3274 --- cmd/relaysrv/main.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/cmd/relaysrv/main.go b/cmd/relaysrv/main.go index 00747ce9..ed9463b7 100644 --- a/cmd/relaysrv/main.go +++ b/cmd/relaysrv/main.go @@ -47,14 +47,14 @@ func init() { var ( listen string - debug bool = false + debug bool sessionAddress []byte sessionPort uint16 - networkTimeout time.Duration = 2 * time.Minute - pingInterval time.Duration = time.Minute - messageTimeout time.Duration = time.Minute + networkTimeout = 2 * time.Minute + pingInterval = time.Minute + messageTimeout = time.Minute limitCheckTimer *time.Timer @@ -69,7 +69,7 @@ var ( poolAddrs string pools []string providedBy string - defaultPoolAddrs string = "https://relays.syncthing.net/endpoint" + defaultPoolAddrs = "https://relays.syncthing.net/endpoint" ) func main() {