Use CONFerr, not RSAerr, in the conf library...
authorRichard Levitte <levitte@openssl.org>
Wed, 26 Apr 2000 12:15:19 +0000 (12:15 +0000)
committerRichard Levitte <levitte@openssl.org>
Wed, 26 Apr 2000 12:15:19 +0000 (12:15 +0000)
crypto/conf/conf_lib.c

index 7a933e56ba18582b763197c1328d3504c96363e7..4c8ca9e9ae4f3df23f798b3aaede9b947f16e433 100644 (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);
                }