1 | /* |
2 | * Generated by util/mkerr.pl DO NOT EDIT |
3 | * Copyright 1995-2019 The OpenSSL Project Authors. All Rights Reserved. |
4 | * |
5 | * Licensed under the Apache License 2.0 (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 <openssl/err.h> |
12 | #include <openssl/uierr.h> |
13 | |
14 | #ifndef OPENSSL_NO_ERR |
15 | |
16 | static const ERR_STRING_DATA UI_str_reasons[] = { |
17 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_COMMON_OK_AND_CANCEL_CHARACTERS), |
18 | "common ok and cancel characters" }, |
19 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_INDEX_TOO_LARGE), "index too large" }, |
20 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_INDEX_TOO_SMALL), "index too small" }, |
21 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_NO_RESULT_BUFFER), "no result buffer" }, |
22 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_PROCESSING_ERROR), "processing error" }, |
23 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_RESULT_TOO_LARGE), "result too large" }, |
24 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_RESULT_TOO_SMALL), "result too small" }, |
25 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_SYSASSIGN_ERROR), "sys$assign error" }, |
26 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_SYSDASSGN_ERROR), "sys$dassgn error" }, |
27 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_SYSQIOW_ERROR), "sys$qiow error" }, |
28 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_UNKNOWN_CONTROL_COMMAND), |
29 | "unknown control command" }, |
30 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_UNKNOWN_TTYGET_ERRNO_VALUE), |
31 | "unknown ttyget errno value" }, |
32 | {ERR_PACK(ERR_LIB_UI, 0, UI_R_USER_DATA_DUPLICATION_UNSUPPORTED), |
33 | "user data duplication unsupported" }, |
34 | {0, NULL} |
35 | }; |
36 | |
37 | #endif |
38 | |
39 | int ERR_load_UI_strings(void) |
40 | { |
41 | #ifndef OPENSSL_NO_ERR |
42 | if (ERR_reason_error_string(UI_str_reasons[0].error) == NULL) |
43 | ERR_load_strings_const(UI_str_reasons); |
44 | #endif |
45 | return 1; |
46 | } |
47 | |