typo: use key for POST callback
This commit is contained in:
parent
835d355b97
commit
4692f9f7b6
1 changed files with 1 additions and 2 deletions
|
@ -207,7 +207,6 @@ int fips_pkey_signature_test(int id, EVP_PKEY *pkey,
|
||||||
const char *fail_str)
|
const char *fail_str)
|
||||||
{
|
{
|
||||||
int subid;
|
int subid;
|
||||||
void *ex = NULL;
|
|
||||||
int ret = 0;
|
int ret = 0;
|
||||||
unsigned char *sig = NULL;
|
unsigned char *sig = NULL;
|
||||||
unsigned int siglen;
|
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);
|
FIPSerr(FIPS_F_FIPS_PKEY_SIGNATURE_TEST,FIPS_R_TEST_FAILURE);
|
||||||
if (fail_str)
|
if (fail_str)
|
||||||
FIPS_add_error_data(2, "Type=", 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 0;
|
||||||
}
|
}
|
||||||
return fips_post_success(id, subid, pkey);
|
return fips_post_success(id, subid, pkey);
|
||||||
|
|
Loading…
Reference in a new issue