Commit 09451b68 authored by Richard Levitte's avatar Richard Levitte
Browse files

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

parent 21346b7a
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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);
		}