tzh
2024-08-22 c7d0944258c7d0943aa7b2211498fd612971ce27
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
/*
 * ss_err.c:
 * This file is automatically generated; please do not edit it.
 */
 
#include <stdlib.h>
 
#define N_(a) a
 
static const char * const text[] = {
   N_(    "Subsystem aborted"),
   N_(    "Version mismatch"),
   N_(    "No current invocation"),
   N_(    "No info directory"),
   N_(    "Command not found"),
   N_(    "Command line aborted"),
   N_(    "End-of-file reached"),
   N_(    "Permission denied"),
   N_(    "Request table not found"),
   N_(    "No info available"),
   N_(    "Shell escapes are disabled"),
   N_(    "Sorry, this request is not yet implemented"),
    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_ss_error_table = { text, 748800L, 12 };
 
static struct et_list link = { 0, 0 };
 
void initialize_ss_error_table_r(struct et_list **list);
void initialize_ss_error_table(void);
 
void initialize_ss_error_table(void) {
    initialize_ss_error_table_r(&_et_list);
}
 
/* For Heimdal compatibility */
void initialize_ss_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_ss_error_table;
    et->next = 0;
    *end = et;
}