diff options
author | Richard Levitte <levitte@openssl.org> | 2000-04-26 14:15:19 +0200 |
---|---|---|
committer | Richard Levitte <levitte@openssl.org> | 2000-04-26 14:15:19 +0200 |
commit | 09451b6857e97b34daa5cfb1b44c5ada96c7f3e1 (patch) | |
tree | 9f1cecccc242843606dda458baffdbc79777480e /crypto | |
parent | Clarifications and removal of double declaration... (diff) | |
download | openssl-09451b6857e97b34daa5cfb1b44c5ada96c7f3e1.tar.xz openssl-09451b6857e97b34daa5cfb1b44c5ada96c7f3e1.zip |
Use CONFerr, not RSAerr, in the conf library...
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/conf/conf_lib.c | 2 |
1 files changed, 1 insertions, 1 deletions
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); } |