Skip to content

Commit

Permalink
Remove some apparently-accidental debug whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
nalind authored and greghudson committed May 8, 2013
1 parent 6349bc7 commit c06efb3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/plugins/preauth/pkinit/pkinit_crypto_openssl.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down Expand Up @@ -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)
Expand Down
4 changes: 2 additions & 2 deletions src/plugins/preauth/pkinit/pkinit_srv.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down Expand Up @@ -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)
Expand Down

0 comments on commit c06efb3

Please sign in to comment.