From: Dr. Stephen Henson Date: Sat, 5 Nov 2011 18:11:05 +0000 (+0000) Subject: typo: use key for POST callback X-Git-Tag: master-post-reformat~2113 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=4692f9f7b6059a4175910d9537744446b71ae879;p=oweals%2Fopenssl.git typo: use key for POST callback --- diff --git a/fips/fips_post.c b/fips/fips_post.c index e55ec08407..8cd2334362 100644 --- a/fips/fips_post.c +++ b/fips/fips_post.c @@ -207,7 +207,6 @@ int fips_pkey_signature_test(int id, EVP_PKEY *pkey, const char *fail_str) { int subid; - void *ex = NULL; int ret = 0; unsigned char *sig = NULL; unsigned int siglen; @@ -335,7 +334,7 @@ int fips_pkey_signature_test(int id, EVP_PKEY *pkey, FIPSerr(FIPS_F_FIPS_PKEY_SIGNATURE_TEST,FIPS_R_TEST_FAILURE); if (fail_str) FIPS_add_error_data(2, "Type=", fail_str); - fips_post_failed(id, subid, ex); + fips_post_failed(id, subid, pkey); return 0; } return fips_post_success(id, subid, pkey);