Use CONFerr, not RSAerr, in the conf library...

This commit is contained in:
Richard Levitte 2000-04-26 12:15:19 +00:00
parent 21346b7a04
commit 09451b6857

View File

@ -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);
}