Skip to content

Commit

Permalink
fixup copy passed
Browse files Browse the repository at this point in the history
  • Loading branch information
prince-chrismc committed Dec 12, 2023
1 parent 1fdc5c4 commit e8e2041
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/OpenSSLErrorTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -433,7 +433,7 @@ OSSL_PARAM_BLD* OSSL_PARAM_BLD_new() {
}

int OSSL_PARAM_BLD_push_BN(OSSL_PARAM_BLD* bld, const char* key, const BIGNUM* bn) {
static OSSL_PARAM_BLD* (*origMethod)(OSSL_PARAM_BLD * bld, const char* key, const BIGNUM* bn) = nullptr;
static int (*origMethod)(OSSL_PARAM_BLD * bld, const char* key, const BIGNUM* bn) = nullptr;
if (origMethod == nullptr) origMethod = (decltype(origMethod))dlsym(RTLD_NEXT, "OSSL_PARAM_BLD_push_BN");
bool fail = fail_OSSL_PARAM_BLD_push_BN & 1;
fail_OSSL_PARAM_BLD_push_BN = fail_OSSL_PARAM_BLD_push_BN >> 1;
Expand Down

0 comments on commit e8e2041

Please sign in to comment.