diff options
author | venaas <venaas> | 2008-04-30 11:05:40 +0000 |
---|---|---|
committer | venaas <venaas@e88ac4ed-0b26-0410-9574-a7f39faa03bf> | 2008-04-30 11:05:40 +0000 |
commit | aa113add56077372f663a3fa97769b0f6c53640e (patch) | |
tree | bc149d17ce3c6e3f8fde3eaec86c72afccfa1c38 | |
parent | 043462cb4b8a24e4a4b459fbaa20309f5c33b2e0 (diff) |
adjusted some loglevels
git-svn-id: https://svn.testnett.uninett.no/radsecproxy/branches/release-1.1@248 e88ac4ed-0b26-0410-9574-a7f39faa03bf
-rw-r--r-- | radsecproxy.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/radsecproxy.c b/radsecproxy.c index 90260fd..49d643a 100644 --- a/radsecproxy.c +++ b/radsecproxy.c @@ -719,7 +719,7 @@ int tlsverifycert(SSL *ssl, struct clsrvconf *conf) { if (r) { if (r < 0) { X509_free(cert); - debug(DBG_DBG, "tlsverifycert: No subjectaltname matching %s %s", type ? "address" : "host", conf->host); + debug(DBG_WARN, "tlsverifycert: No subjectaltname matching %s %s", type ? "address" : "host", conf->host); return 0; } debug(DBG_DBG, "tlsverifycert: Found subjectaltname matching %s %s", type ? "address" : "host", conf->host); @@ -747,7 +747,7 @@ int tlsverifycert(SSL *ssl, struct clsrvconf *conf) { } if (!r) { X509_free(cert); - debug(DBG_ERR, "tlsverifycert: cn not matching host %s", conf->host); + debug(DBG_WARN, "tlsverifycert: cn not matching host %s", conf->host); return 0; } } @@ -1978,7 +1978,7 @@ int replyh(struct server *server, unsigned char *buf) { /* once we set received = 1, rq may be reused */ rq->received = 1; - debug(DBG_DBG, "replyh: passing reply to client %s", from->conf->name); + debug(DBG_INFO, "replyh: passing reply to client %s", from->conf->name); sendreply(from, buf, from->conf->type == 'U' ? &fromsa : NULL); pthread_mutex_unlock(&server->newrq_mutex); return 1; |