From 2f5dbc939151b52b5fd2b74d6db80bbdae17a14d Mon Sep 17 00:00:00 2001 From: empathetic-alligator Date: Sun, 14 Dec 2014 17:39:08 -0500 Subject: [PATCH] Fixed formatting and made color default. --- client.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client.go b/client.go index 673b94c..cf4b665 100644 --- a/client.go +++ b/client.go @@ -60,7 +60,7 @@ type Client struct { silencedUntil time.Time lastTX time.Time beepMe bool - colorMe bool + colorMe bool } func NewClient(server *Server, conn *ssh.ServerConn) *Client { @@ -72,6 +72,7 @@ func NewClient(server *Server, conn *ssh.ServerConn) *Client { Msg: make(chan string, MSG_BUFFER), ready: make(chan struct{}, 1), lastTX: time.Now(), + colorMe: true, } }