diff options
author | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-05-15 19:04:15 +0000 |
---|---|---|
committer | Andreas Steffen <andreas.steffen@strongswan.org> | 2007-05-15 19:04:15 +0000 |
commit | 16c72c0c4fc913e652c6f8c7cb5c37a8fbde678a (patch) | |
tree | bf6c2048546bcb7597a46898fcd7f8a2c6afdeed | |
parent | 8a664830d0d91f300f1951e9c3c8d0cc39162509 (diff) | |
download | strongswan-16c72c0c4fc913e652c6f8c7cb5c37a8fbde678a.tar.bz2 strongswan-16c72c0c4fc913e652c6f8c7cb5c37a8fbde678a.tar.xz |
cosmetics
-rw-r--r-- | src/charon/sa/tasks/ike_cert.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/charon/sa/tasks/ike_cert.c b/src/charon/sa/tasks/ike_cert.c index a88016e8e..880ed9c42 100644 --- a/src/charon/sa/tasks/ike_cert.c +++ b/src/charon/sa/tasks/ike_cert.c @@ -84,7 +84,7 @@ static void process_certreqs(private_ike_cert_t *this, message_t *message) encoding = certreq->get_cert_encoding(certreq); if (encoding != CERT_X509_SIGNATURE) { - DBG1(DBG_IKE, "certreq payload %N not supported, ignored", + DBG1(DBG_IKE, "certreq payload %N not supported - ignored", cert_encoding_names, encoding); continue; } @@ -125,7 +125,7 @@ static void process_certs(private_ike_cert_t *this, message_t *message) encoding = cert_payload->get_cert_encoding(cert_payload); if (encoding != CERT_X509_SIGNATURE) { - DBG1(DBG_IKE, "certificate payload %N not supported, ignored", + DBG1(DBG_IKE, "certificate payload %N not supported - ignored", cert_encoding_names, encoding); continue; } @@ -136,7 +136,7 @@ static void process_certs(private_ike_cert_t *this, message_t *message) { if (charon->credentials->verify(charon->credentials, cert, &found)) { - DBG2(DBG_IKE, "received end entity certificate is trusted, " + DBG2(DBG_IKE, "received end entity certificate is trusted - " "added to store"); if (found) { @@ -149,14 +149,14 @@ static void process_certs(private_ike_cert_t *this, message_t *message) } else { - DBG1(DBG_IKE, "received end entity certificate is not trusted," + DBG1(DBG_IKE, "received end entity certificate is not trusted - " "discarded"); cert->destroy(cert); } } else { - DBG1(DBG_IKE, "parsing of received certificate failed, discarded"); + DBG1(DBG_IKE, "parsing of received certificate failed - discarded"); chunk_free(&cert_data); } } |