sha[1|512]-armv8.pl: get instruction endianness right.
[oweals/openssl.git] / crypto / err / err.c
index fcdb244008f66d0f8ca10e2947092307b82e2003..3492950b59be3e05bc1d5c82594b22265f0b2a16 100644 (file)
  *
  */
 
+#define OPENSSL_NO_FIPS_ERR
+
 #include <stdio.h>
 #include <stdarg.h>
 #include <string.h>
@@ -143,6 +145,8 @@ static ERR_STRING_DATA ERR_str_libraries[]=
 {ERR_PACK(ERR_LIB_CONF,0,0)            ,"configuration file routines"},
 {ERR_PACK(ERR_LIB_CRYPTO,0,0)          ,"common libcrypto routines"},
 {ERR_PACK(ERR_LIB_EC,0,0)              ,"elliptic curve routines"},
+{ERR_PACK(ERR_LIB_ECDSA,0,0)           ,"ECDSA routines"},
+{ERR_PACK(ERR_LIB_ECDH,0,0)            ,"ECDH routines"},
 {ERR_PACK(ERR_LIB_SSL,0,0)             ,"SSL routines"},
 {ERR_PACK(ERR_LIB_BIO,0,0)             ,"BIO routines"},
 {ERR_PACK(ERR_LIB_PKCS7,0,0)           ,"PKCS7 routines"},
@@ -203,6 +207,7 @@ static ERR_STRING_DATA ERR_str_reasons[]=
 {ERR_R_ENGINE_LIB                      ,"ENGINE lib"},
 {ERR_R_OCSP_LIB                                ,"OCSP lib"},
 {ERR_R_TS_LIB                          ,"TS lib"},
+{ERR_R_ECDSA_LIB                       ,"ECDSA lib"},
 
 {ERR_R_NESTED_ASN1_ERROR               ,"nested asn1 error"},
 {ERR_R_BAD_ASN1_OBJECT_HEADER          ,"bad asn1 object header"},
@@ -1033,7 +1038,7 @@ ERR_STATE *ERR_get_state(void)
                        ERR_STATE_free(ret); /* could not insert it */
                        return(&fallback);
                        }
-               /* If a race occured in this function and we came second, tmpp
+               /* If a race occurred in this function and we came second, tmpp
                 * is the first one that we just replaced. */
                if (tmpp)
                        ERR_STATE_free(tmpp);