From 464df1d5e5ab1322e2dd0a7796939fff1aeefa9a Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sun, 7 Apr 2024 17:49:25 +0200 Subject: Adding upstream version 1.47.0. Signed-off-by: Daniel Baumann --- lib/et/test_cases/simple.c | 76 ++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 lib/et/test_cases/simple.c (limited to 'lib/et/test_cases/simple.c') diff --git a/lib/et/test_cases/simple.c b/lib/et/test_cases/simple.c new file mode 100644 index 0000000..10ab1a3 --- /dev/null +++ b/lib/et/test_cases/simple.c @@ -0,0 +1,76 @@ +/* + * simple.c: + * This file is automatically generated; please do not edit it. + */ + +#include + +#define N_(a) a + +static const char * const text[] = { + N_( "Can't read ticket file"), + N_( "Can't find ticket or TGT"), + N_( "TGT expired"), + N_( "Can't decode authenticator"), + N_( "Ticket expired"), + N_( "Repeated request"), + N_( "The ticket isn't for us"), + N_( "Request is inconsistent"), + N_( "Delta-T too big"), + N_( "Incorrect net address"), + N_( "Protocol version mismatch"), + N_( "Invalid message type"), + N_( "Message stream modified"), + N_( "Message out of order"), + N_( "Unauthorized request"), + N_( "Current password is null"), + N_( "Incorrect current password"), + N_( "Protocol error"), + N_( "Error returned by KDC"), + N_( "Null ticket returned by KDC"), + N_( "Retry count exceeded"), + N_( "Can't send request"), + 0 +}; + +struct error_table { + char const * const * msgs; + long base; + int n_msgs; +}; +struct et_list { + struct et_list *next; + const struct error_table * table; +}; +extern struct et_list *_et_list; + +const struct error_table et_krb_error_table = { text, 39525376L, 22 }; + +static struct et_list link = { 0, 0 }; + +void initialize_krb_error_table_r(struct et_list **list); +void initialize_krb_error_table(void); + +void initialize_krb_error_table(void) { + initialize_krb_error_table_r(&_et_list); +} + +/* For Heimdal compatibility */ +void initialize_krb_error_table_r(struct et_list **list) +{ + struct et_list *et, **end; + + for (end = list, et = *list; et; end = &et->next, et = et->next) + if (et->table->msgs == text) + return; + et = malloc(sizeof(struct et_list)); + if (et == 0) { + if (!link.table) + et = &link; + else + return; + } + et->table = &et_krb_error_table; + et->next = 0; + *end = et; +} -- cgit v1.2.3