2dd80be0e35568d1ce3dd2d47abeaa88e98b9091
[openssl.git] / crypto / objects / obj_err.c
1 /*
2  * Generated by util/mkerr.pl DO NOT EDIT
3  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
4  *
5  * Licensed under the OpenSSL license (the "License").  You may not use
6  * this file except in compliance with the License.  You can obtain a copy
7  * in the file LICENSE in the source distribution or at
8  * https://www.openssl.org/source/license.html
9  */
10
11 #include <stdio.h>
12 #include <openssl/err.h>
13 #include <openssl/objects.h>
14
15 /* BEGIN ERROR CODES */
16 #ifndef OPENSSL_NO_ERR
17
18 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_OBJ,func,0)
19 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_OBJ,0,reason)
20
21 static ERR_STRING_DATA OBJ_str_functs[] = {
22     {ERR_FUNC(OBJ_F_OBJ_ADD_OBJECT), "OBJ_add_object"},
23     {ERR_FUNC(OBJ_F_OBJ_CREATE), "OBJ_create"},
24     {ERR_FUNC(OBJ_F_OBJ_DUP), "OBJ_dup"},
25     {ERR_FUNC(OBJ_F_OBJ_NAME_NEW_INDEX), "OBJ_NAME_new_index"},
26     {ERR_FUNC(OBJ_F_OBJ_NID2LN), "OBJ_nid2ln"},
27     {ERR_FUNC(OBJ_F_OBJ_NID2OBJ), "OBJ_nid2obj"},
28     {ERR_FUNC(OBJ_F_OBJ_NID2SN), "OBJ_nid2sn"},
29     {0, NULL}
30 };
31
32 static ERR_STRING_DATA OBJ_str_reasons[] = {
33     {ERR_REASON(OBJ_R_OID_EXISTS), "oid exists"},
34     {ERR_REASON(OBJ_R_UNKNOWN_NID), "unknown nid"},
35     {0, NULL}
36 };
37
38 #endif
39
40 void ERR_load_OBJ_strings(void)
41 {
42 #ifndef OPENSSL_NO_ERR
43
44     if (ERR_func_error_string(OBJ_str_functs[0].error) == NULL) {
45         ERR_load_strings(0, OBJ_str_functs);
46         ERR_load_strings(0, OBJ_str_reasons);
47     }
48 #endif
49 }