bio/b_sock.c: cleanup obsolete stuff.
[openssl.git] / crypto / rand / rand_err.c
index d1263edf80f6e0a7744750b632c9a057a1076544..d01393add1af65de9b5e34cb58f16b94a8b5876d 100644 (file)
@@ -1,13 +1,12 @@
-/* crypto/rand/rand_err.c */
 /* ====================================================================
- * Copyright (c) 1999 The OpenSSL Project.  All rights reserved.
+ * Copyright (c) 1999-2015 The OpenSSL Project.  All rights reserved.
  *
  * Redistribution and use in source and binary forms, with or without
  * modification, are permitted provided that the following conditions
  * are met:
  *
  * 1. Redistributions of source code must retain the above copyright
- *    notice, this list of conditions and the following disclaimer. 
+ *    notice, this list of conditions and the following disclaimer.
  *
  * 2. Redistributions in binary form must reproduce the above copyright
  *    notice, this list of conditions and the following disclaimer in
  *
  */
 
-/* NOTE: this file was auto generated by the mkerr.pl script: any changes
- * made to it will be overwritten when the script next updates this file.
+/*
+ * NOTE: this file was auto generated by the mkerr.pl script: any changes
+ * made to it will be overwritten when the script next updates this file,
+ * only reason strings will be preserved.
  */
 
 #include <stdio.h>
 #include <openssl/rand.h>
 
 /* BEGIN ERROR CODES */
-#ifndef NO_ERR
-static ERR_STRING_DATA RAND_str_functs[]=
-       {
-{ERR_PACK(0,RAND_F_SSLEAY_RAND_BYTES,0),       "SSLEAY_RAND_BYTES"},
-{0,NULL}
-       };
+#ifndef OPENSSL_NO_ERR
 
-static ERR_STRING_DATA RAND_str_reasons[]=
-       {
-{RAND_R_PRNG_NOT_SEEDED                  ,"prng not seeded"},
-{0,NULL}
-       };
+# define ERR_FUNC(func) ERR_PACK(ERR_LIB_RAND,func,0)
+# define ERR_REASON(reason) ERR_PACK(ERR_LIB_RAND,0,reason)
+
+static ERR_STRING_DATA RAND_str_functs[] = {
+    {ERR_FUNC(RAND_F_FIPS_RAND), "FIPS_RAND"},
+    {ERR_FUNC(RAND_F_FIPS_RAND_SET_DT), "FIPS_RAND_SET_DT"},
+    {ERR_FUNC(RAND_F_FIPS_SET_PRNG_SEED), "FIPS_SET_PRNG_SEED"},
+    {ERR_FUNC(RAND_F_FIPS_SET_TEST_MODE), "FIPS_SET_TEST_MODE"},
+    {ERR_FUNC(RAND_F_FIPS_X931_SET_DT), "FIPS_x931_set_dt"},
+    {ERR_FUNC(RAND_F_RAND_BYTES), "RAND_bytes"},
+    {ERR_FUNC(RAND_F_RAND_GET_RAND_METHOD), "RAND_get_rand_method"},
+    {0, NULL}
+};
+
+static ERR_STRING_DATA RAND_str_reasons[] = {
+    {ERR_REASON(RAND_R_NOT_IN_TEST_MODE), "not in test mode"},
+    {ERR_REASON(RAND_R_NO_KEY_SET), "no key set"},
+    {ERR_REASON(RAND_R_PRNG_ERROR), "prng error"},
+    {ERR_REASON(RAND_R_PRNG_KEYED), "prng keyed"},
+    {ERR_REASON(RAND_R_PRNG_NOT_SEEDED), "PRNG not seeded"},
+    {ERR_REASON(RAND_R_PRNG_SEED_MUST_NOT_MATCH_KEY),
+     "prng seed must not match key"},
+    {ERR_REASON(RAND_R_PRNG_STUCK), "prng stuck"},
+    {0, NULL}
+};
 
 #endif
 
 void ERR_load_RAND_strings(void)
-       {
-       static int init=1;
+{
+#ifndef OPENSSL_NO_ERR
 
-       if (init)
-               {
-               init=0;
-#ifndef NO_ERR
-               ERR_load_strings(ERR_LIB_RAND,RAND_str_functs);
-               ERR_load_strings(ERR_LIB_RAND,RAND_str_reasons);
+    if (ERR_func_error_string(RAND_str_functs[0].error) == NULL) {
+        ERR_load_strings(0, RAND_str_functs);
+        ERR_load_strings(0, RAND_str_reasons);
+    }
 #endif
-
-               }
-       }
+}