Skip to content

Commit

Permalink
fixup! Store: API for deletion - tests
Browse files Browse the repository at this point in the history
  • Loading branch information
beldmit committed Aug 28, 2023
1 parent 60cfe16 commit ba2759c
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion test/fake_rsaprov.c
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ static int imptypes_selection;
static int exptypes_selection;
static int query_id;

int key_deleted = 0;
int key_deleted;

struct fake_rsa_keydata {
int selection;
Expand Down Expand Up @@ -692,6 +692,7 @@ static int fake_rsa_provider_init(const OSSL_CORE_HANDLE *handle,
OSSL_PROVIDER *fake_rsa_start(OSSL_LIB_CTX *libctx)
{
OSSL_PROVIDER *p;
key_deleted = 0;

if (!TEST_true(OSSL_PROVIDER_add_builtin(libctx, "fake-rsa",
fake_rsa_provider_init))
Expand Down

0 comments on commit ba2759c

Please sign in to comment.