From: Richard Levitte Date: Wed, 26 Apr 2000 12:15:19 +0000 (+0000) Subject: Use CONFerr, not RSAerr, in the conf library... X-Git-Tag: OpenSSL_0_9_5~51 X-Git-Url: https://git.openssl.org/gitweb/?p=openssl.git;a=commitdiff_plain;h=09451b6857e97b34daa5cfb1b44c5ada96c7f3e1 Use CONFerr, not RSAerr, in the conf library... --- diff --git a/crypto/conf/conf_lib.c b/crypto/conf/conf_lib.c index 7a933e56ba..4c8ca9e9ae 100644 --- a/crypto/conf/conf_lib.c +++ b/crypto/conf/conf_lib.c @@ -221,7 +221,7 @@ CONF *NCONF_new(CONF_METHOD *meth) ret = meth->create(meth); if (ret == NULL) { - RSAerr(CONF_F_NCONF_NEW,ERR_R_MALLOC_FAILURE); + CONFerr(CONF_F_NCONF_NEW,ERR_R_MALLOC_FAILURE); return(NULL); }