From 94e38451046c25fb5f7a9fd6b508aa83f0ddd109 Mon Sep 17 00:00:00 2001 From: Nalin Dahyabhai Date: Tue, 9 Nov 2010 00:05:41 -0500 Subject: [PATCH 112/150] - debug log what happened with the CRLs --- src/plugins/preauth/pkinit/pkinit_crypto_nss.c | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/src/plugins/preauth/pkinit/pkinit_crypto_nss.c b/src/plugins/preauth/pkinit/pkinit_crypto_nss.c index b9ca9c2..1c9072a 100644 --- a/src/plugins/preauth/pkinit/pkinit_crypto_nss.c +++ b/src/plugins/preauth/pkinit/pkinit_crypto_nss.c @@ -2555,6 +2555,13 @@ crypto_load_files(krb5_context context, crl); if (status == SECSuccess) { crls[j++] = crl; + pkiDebug("%s: cached CRL from \"%s\"\n", + __FUNCTION__, crlfile); + } else { + pkiDebug("%s: error loading CRL " + "from \"%s\": %d\n", + __FUNCTION__, crlfile, + PORT_GetError()); } } crls[j++] = NULL; -- 1.7.6.4