summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authormichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-07-30 17:20:29 +0000
committermichael <michael@82007160-df01-0410-b94d-b575c5fd34c7>2013-07-30 17:20:29 +0000
commitdd18e42e6ed4497e4b8a2c84182f0c3d5a760b15 (patch)
tree99e1382405845bdb5bfc01191037ab909b6378ef
parentce86ae58dcf0076845ec5e2bc089228035a5fb4f (diff)
- s_bsd.c:ssl_handshake(): no need to spam ircd.log with useless ssl errors
git-svn-id: svn://svn.ircd-hybrid.org/svnroot/ircd-hybrid/branches/8.1.x@2425 82007160-df01-0410-b94d-b575c5fd34c7
-rw-r--r--src/s_bsd.c3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/s_bsd.c b/src/s_bsd.c
index 5b33efd..d75e187 100644
--- a/src/s_bsd.c
+++ b/src/s_bsd.c
@@ -253,9 +253,6 @@ ssl_handshake(int fd, struct Client *client_p)
{
X509 *cert = NULL;
int ret = SSL_accept(client_p->localClient->fd.ssl);
- int err = SSL_get_error(client_p->localClient->fd.ssl, ret);
-
- ilog(LOG_TYPE_IRCD, "SSL Error %d %s", err, ERR_error_string(err, NULL));
if ((cert = SSL_get_peer_certificate(client_p->localClient->fd.ssl)))
{