Skip to content

Commit 33e1bcf

Browse files
committed
apr_crypto_openssl: Fix response code for openssl3.5+
git-svn-id: https://svn.apache.org/repos/asf/apr/apr-util/branches/1.7.x@1924549 13f79535-47bb-0310-9956-ffa450edef68
1 parent 72ca44e commit 33e1bcf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crypto/apr_crypto_openssl.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ static apr_status_t crypto_make(apr_crypto_t **ff,
555555
/* options after a provider apply to the provider */
556556
#if !APR_USE_OPENSSL_PRE_3_5_API
557557
if (!OSSL_PROVIDER_add_conf_parameter(prov, elt, ptr)) {
558-
return PR_EINVAL;
558+
return APR_EINVAL;
559559
}
560560
#else
561561
return APR_ENOTIMPL;

0 commit comments

Comments
 (0)