diff options
author | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-07-30 17:20:29 +0000 |
---|---|---|
committer | michael <michael@82007160-df01-0410-b94d-b575c5fd34c7> | 2013-07-30 17:20:29 +0000 |
commit | dd18e42e6ed4497e4b8a2c84182f0c3d5a760b15 (patch) | |
tree | 99e1382405845bdb5bfc01191037ab909b6378ef | |
parent | ce86ae58dcf0076845ec5e2bc089228035a5fb4f (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.c | 3 |
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))) { |