X-Git-Url: https://arthur.barton.de/cgi-bin/gitweb.cgi?p=ngircd-alex.git;a=blobdiff_plain;f=src%2Fngircd%2Fconn-ssl.c;fp=src%2Fngircd%2Fconn-ssl.c;h=0c46c9756ab20088edcab18bfd6de9445f38984b;hp=4dd335ea9209f6a01fa11f459fb3e0d976e44a21;hb=f96966a62f3770c543f3cf9bb17da9fbaf5f3c79;hpb=7c90264f1f9cc39b44bccd6214c4dc23268a55e0 diff --git a/src/ngircd/conn-ssl.c b/src/ngircd/conn-ssl.c index 4dd335ea..0c46c975 100644 --- a/src/ngircd/conn-ssl.c +++ b/src/ngircd/conn-ssl.c @@ -280,8 +280,8 @@ void ConnSSL_Free(CONNECTION *c) assert(slot->x509_cred != NULL); slot->refcnt--; if ((c->ssl_state.x509_cred_idx != x509_cred_idx) && (slot->refcnt <= 0)) { - Log(LOG_INFO, "Discarding X509 certificate credentials from slot %zd.", - c->ssl_state.x509_cred_idx); + LogDebug("Discarding X509 certificate credentials from slot %zd.", + c->ssl_state.x509_cred_idx); gnutls_certificate_free_keys(slot->x509_cred); gnutls_certificate_free_credentials(slot->x509_cred); slot->x509_cred = NULL; @@ -448,7 +448,8 @@ ConnSSL_LoadServerKey_gnutls(void) /* Free currently active x509 context (if any) unless it is still in use */ slot = array_get(&x509_creds, sizeof(x509_cred_slot), x509_cred_idx); if ((slot != NULL) && (slot->refcnt <= 0) && (slot->x509_cred != NULL)) { - Log(LOG_INFO, "Discarding X509 certificate credentials from slot %zd.", x509_cred_idx); + LogDebug("Discarding X509 certificate credentials from slot %zd.", + x509_cred_idx); gnutls_certificate_free_keys(slot->x509_cred); gnutls_certificate_free_credentials(slot->x509_cred); slot->x509_cred = NULL; @@ -583,7 +584,7 @@ ConnSSL_Init_SSL(CONNECTION *c) gnutls_certificate_server_set_request(c->ssl_state.gnutls_session, GNUTLS_CERT_REQUEST); - Log(LOG_INFO, "Using X509 credentials from slot %zd", x509_cred_idx); + LogDebug("Using X509 credentials from slot %zd.", x509_cred_idx); c->ssl_state.x509_cred_idx = x509_cred_idx; x509_cred_slot *slot = array_get(&x509_creds, sizeof(x509_cred_slot), x509_cred_idx); slot->refcnt++;