summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMouse <mouse008@gmail.com>2016-01-03 18:47:57 -0500
committerRichard Levitte <levitte@openssl.org>2016-01-13 01:23:34 +0100
commit8259ccb44d1a25f5a9dcba4fea93068db8ddb1e1 (patch)
tree83c4938e1023a7ff95c0729eedb06d5c6973ae93
parentad81ca9061506482bf40c9dd17097814c3ce75b2 (diff)
downloadopenssl-new-8259ccb44d1a25f5a9dcba4fea93068db8ddb1e1.tar.gz
Remove unnecessary debugging fprintf
Reviewed-by: Rich Salz <rsalz@openssl.org> Reviewed-by: Richard Levitte <levitte@openssl.org>
-rw-r--r--apps/pkeyutl.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/apps/pkeyutl.c b/apps/pkeyutl.c
index 014738862c..cc69ca9a8e 100644
--- a/apps/pkeyutl.c
+++ b/apps/pkeyutl.c
@@ -420,7 +420,6 @@ static EVP_PKEY_CTX *init_ctx(int *pkeysize,
goto end;
if ((keyform == FORMAT_ENGINE) && (strncmp(ENGINE_get_name(e),"pkcs11 engine", strlen("pkcs11 engine"))==0)) {
- fprintf(stderr, "engine name = \"%s\"\n", ENGINE_get_name(e));
ctx = EVP_PKEY_CTX_new(pkey, NULL);
} else {
ctx = EVP_PKEY_CTX_new(pkey, e);