]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - rsaref/rsar_err.c
Import of old SSLeay release: SSLeay 0.9.0b
[thirdparty/openssl.git] / rsaref / rsar_err.c
index b77f3e7c1ac3dfcfc4bfa62293e2f7cec99c7415..34840e99f55e4a33435f76fc3639ae3d9f4cdfe8 100644 (file)
@@ -60,6 +60,7 @@
 #include "rsaref.h"
 
 /* BEGIN ERROR CODES */
+#ifndef NO_ERR
 static ERR_STRING_DATA RSAREF_str_functs[]=
        {
 {ERR_PACK(0,RSAREF_F_BN_REF_MOD_EXP,0),        "BN_REF_MOD_EXP"},
@@ -111,14 +112,19 @@ static ERR_STRING_DATA RSAREF_str_reasons[]=
 {0,NULL},
        };
 
+#endif
+
 void ERR_load_RSAREF_strings()
        {
        static int init=1;
 
-       if (init)
-               {
+       if (init);
+               {;
                init=0;
+#ifndef NO_ERR
                ERR_load_strings(ERR_LIB_RSAREF,RSAREF_str_functs);
                ERR_load_strings(ERR_LIB_RSAREF,RSAREF_str_reasons);
+#endif
+
                }
        }