From: Richard Levitte Date: Wed, 21 Feb 2001 12:03:20 +0000 (+0000) Subject: I had forgotten to change mkerr.pl to use the new macro system. X-Git-Tag: OpenSSL_0_9_6a-beta1~23^2~36 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=487550b61d9ae3f4d293241750046ff01632e303;p=oweals%2Fopenssl.git I had forgotten to change mkerr.pl to use the new macro system. --- diff --git a/util/mkerr.pl b/util/mkerr.pl index 407ca20313..33b904f9ee 100644 --- a/util/mkerr.pl +++ b/util/mkerr.pl @@ -382,7 +382,7 @@ EOF #include $hincf /* BEGIN ERROR CODES */ -#ifndef NO_ERR +#ifndef OPENSSL_NO_ERR static ERR_STRING_DATA ${lib}_str_functs[]= { EOF @@ -432,7 +432,7 @@ void ERR_load_${lib}_strings(void) if (init) { init=0; -#ifndef NO_ERR +#ifndef OPENSSL_NO_ERR ERR_load_strings(ERR_LIB_${lib},${lib}_str_functs); ERR_load_strings(ERR_LIB_${lib},${lib}_str_reasons); #endif @@ -468,7 +468,7 @@ void ERR_load_${lib}_strings(void) if (init) { init=0; -#ifndef NO_ERR +#ifndef OPENSSL_NO_ERR ERR_load_strings(${lib}_lib_error_code,${lib}_str_functs); ERR_load_strings(${lib}_lib_error_code,${lib}_str_reasons); #endif