Fixed formatting and made color default.

This commit is contained in:
empathetic-alligator 2014-12-14 17:39:08 -05:00
parent 6bf5348b4e
commit 2f5dbc9391

View File

@ -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,
}
}