From 18e35caae370fb42eb8c3e3cb441aeaae4f0fa5a Mon Sep 17 00:00:00 2001 From: Mikkel Krautz Date: Sun, 18 Nov 2012 23:39:45 +0100 Subject: [PATCH] grumble: remove superfluous client printf. --- client.go | 1 - 1 file changed, 1 deletion(-) diff --git a/client.go b/client.go index 9c10107..b53585c 100644 --- a/client.go +++ b/client.go @@ -133,7 +133,6 @@ func (client *Client) ShownName() string { func (client *Client) IsVerified() bool { tlsconn := client.conn.(*tls.Conn) state := tlsconn.ConnectionState() - client.Printf("%v", state.VerifiedChains) return len(state.VerifiedChains) > 0 }