grumble: remove superfluous client printf.

This commit is contained in:
Mikkel Krautz 2012-11-18 23:39:45 +01:00
parent a415ae75a9
commit 18e35caae3

View file

@ -133,7 +133,6 @@ func (client *Client) ShownName() string {
func (client *Client) IsVerified() bool { func (client *Client) IsVerified() bool {
tlsconn := client.conn.(*tls.Conn) tlsconn := client.conn.(*tls.Conn)
state := tlsconn.ConnectionState() state := tlsconn.ConnectionState()
client.Printf("%v", state.VerifiedChains)
return len(state.VerifiedChains) > 0 return len(state.VerifiedChains) > 0
} }