summaryrefslogtreecommitdiffstats
path: root/fips
diff options
context:
space:
mode:
authorDr. Stephen Henson <steve@openssl.org>2011-11-05 18:11:16 +0000
committerDr. Stephen Henson <steve@openssl.org>2011-11-05 18:11:16 +0000
commit21a5cb26965843b263044ff2b7220ea1f030cf4e (patch)
tree01d5fcb766f074380cbc529c2dd2ec7dd37006f1 /fips
parent01fc2c1598b6f54c462ccc1b708aa54cdd291f16 (diff)
typo: use key for POST callback
Diffstat (limited to 'fips')
-rw-r--r--fips/fips_post.c3
1 files changed, 1 insertions, 2 deletions
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);