Line data Source code
1 : #include "config.h"
2 : /* Generated from /builds/samba-team/lts-community/samba/third_party/heimdal/lib/krb5/k5e1_err.et */
3 : /* $Id$ */
4 :
5 : #include <stddef.h>
6 : #include <com_err.h>
7 : #include "k5e1_err.h"
8 :
9 : #define N_(x) (x)
10 :
11 : static const char *k5e1_error_strings[] = {
12 : /* 000 */ "Reserved k5e1 error (0)",
13 : /* 001 */ "Reserved k5e1 error (1)",
14 : /* 002 */ "Reserved k5e1 error (2)",
15 : /* 003 */ "Reserved k5e1 error (3)",
16 : /* 004 */ N_("Can't create new subsidiary cache"),
17 : /* 005 */ N_("Invalid keyring anchor name"),
18 : /* 006 */ N_("Unknown keyring collection version"),
19 : /* 007 */ N_("Invalid UID in persistent keyring name"),
20 : NULL
21 : };
22 :
23 : #define num_errors 8
24 :
25 555816 : void initialize_k5e1_error_table_r(struct et_list **list)
26 : {
27 555816 : initialize_error_table_r(list, k5e1_error_strings, num_errors, ERROR_TABLE_BASE_k5e1);
28 555816 : }
29 :
30 0 : void initialize_k5e1_error_table(void)
31 : {
32 0 : init_error_table(k5e1_error_strings, ERROR_TABLE_BASE_k5e1, num_errors);
33 0 : }
|