krb5 commit: Remove some apparently-accidental debug whitespace

Greg Hudson ghudson at MIT.EDU
Wed May 8 01:17:40 EDT 2013


https://github.com/krb5/krb5/commit/c06efb31b95bffb3bdcdfef4c87f51c33da76950
commit c06efb31b95bffb3bdcdfef4c87f51c33da76950
Author: Nalin Dahyabhai <nalin at redhat.com>
Date:   Wed Feb 13 18:45:22 2013 -0500

    Remove some apparently-accidental debug whitespace

 src/plugins/preauth/pkinit/pkinit_crypto_openssl.c |    4 ++--
 src/plugins/preauth/pkinit/pkinit_srv.c            |    4 ++--
 2 files changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c b/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
index 01ff7e8..ee94f08 100644
--- a/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
+++ b/src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
@@ -507,7 +507,7 @@ pkinit_fini_identity_crypto(pkinit_identity_crypto_context idctx)
     if (idctx == NULL)
         return;
 
-    pkiDebug("%s: freeing   ctx at %p\n", __FUNCTION__, idctx);
+    pkiDebug("%s: freeing ctx at %p\n", __FUNCTION__, idctx);
     free(idctx->identity);
     pkinit_fini_certs(idctx);
     pkinit_fini_pkcs11(idctx);
@@ -545,7 +545,7 @@ pkinit_fini_req_crypto(pkinit_req_crypto_context req_cryptoctx)
     if (req_cryptoctx == NULL)
         return;
 
-    pkiDebug("%s: freeing   ctx at %p\n", __FUNCTION__, req_cryptoctx);
+    pkiDebug("%s: freeing ctx at %p\n", __FUNCTION__, req_cryptoctx);
     if (req_cryptoctx->dh != NULL)
         DH_free(req_cryptoctx->dh);
     if (req_cryptoctx->received_cert != NULL)
diff --git a/src/plugins/preauth/pkinit/pkinit_srv.c b/src/plugins/preauth/pkinit/pkinit_srv.c
index 40ac8f9..f3dfb50 100644
--- a/src/plugins/preauth/pkinit/pkinit_srv.c
+++ b/src/plugins/preauth/pkinit/pkinit_srv.c
@@ -1393,7 +1393,7 @@ pkinit_server_plugin_fini(krb5_context context,
     for (i = 0; realm_contexts[i] != NULL; i++) {
         pkinit_server_plugin_fini_realm(context, realm_contexts[i]);
     }
-    pkiDebug("%s: freeing   context at %p\n", __FUNCTION__, realm_contexts);
+    pkiDebug("%s: freeing context at %p\n", __FUNCTION__, realm_contexts);
     free(realm_contexts);
 }
 
@@ -1434,7 +1434,7 @@ pkinit_fini_kdc_req_context(krb5_context context, void *ctx)
         pkiDebug("pkinit_fini_kdc_req_context: got bad reqctx (%p)!\n", reqctx);
         return;
     }
-    pkiDebug("%s: freeing   reqctx at %p\n", __FUNCTION__, reqctx);
+    pkiDebug("%s: freeing reqctx at %p\n", __FUNCTION__, reqctx);
 
     pkinit_fini_req_crypto(reqctx->cryptoctx);
     if (reqctx->rcv_auth_pack != NULL)


More information about the cvs-krb5 mailing list