]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/ui/ui_err.c
Remove unused error/function codes.
[thirdparty/openssl.git] / crypto / ui / ui_err.c
CommitLineData
0f113f3e 1/*
0cd0a820 2 * Generated by util/mkerr.pl DO NOT EDIT
b6cff313
RS
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
a63d5eaa
RL
9 */
10
11#include <stdio.h>
12#include <openssl/err.h>
13#include <openssl/ui.h>
14
15/* BEGIN ERROR CODES */
16#ifndef OPENSSL_NO_ERR
29dc3508 17
0f113f3e
MC
18# define ERR_FUNC(func) ERR_PACK(ERR_LIB_UI,func,0)
19# define ERR_REASON(reason) ERR_PACK(ERR_LIB_UI,0,reason)
29dc3508 20
0f113f3e 21static ERR_STRING_DATA UI_str_functs[] = {
b8fb5989
DSH
22 {ERR_FUNC(UI_F_GENERAL_ALLOCATE_BOOLEAN), "general_allocate_boolean"},
23 {ERR_FUNC(UI_F_GENERAL_ALLOCATE_PROMPT), "general_allocate_prompt"},
569d0646 24 {ERR_FUNC(UI_F_UI_CREATE_METHOD), "UI_create_method"},
0f113f3e
MC
25 {ERR_FUNC(UI_F_UI_CTRL), "UI_ctrl"},
26 {ERR_FUNC(UI_F_UI_DUP_ERROR_STRING), "UI_dup_error_string"},
27 {ERR_FUNC(UI_F_UI_DUP_INFO_STRING), "UI_dup_info_string"},
28 {ERR_FUNC(UI_F_UI_DUP_INPUT_BOOLEAN), "UI_dup_input_boolean"},
29 {ERR_FUNC(UI_F_UI_DUP_INPUT_STRING), "UI_dup_input_string"},
30 {ERR_FUNC(UI_F_UI_DUP_VERIFY_STRING), "UI_dup_verify_string"},
31 {ERR_FUNC(UI_F_UI_GET0_RESULT), "UI_get0_result"},
32 {ERR_FUNC(UI_F_UI_NEW_METHOD), "UI_new_method"},
33 {ERR_FUNC(UI_F_UI_SET_RESULT), "UI_set_result"},
34 {0, NULL}
35};
a63d5eaa 36
0f113f3e
MC
37static ERR_STRING_DATA UI_str_reasons[] = {
38 {ERR_REASON(UI_R_COMMON_OK_AND_CANCEL_CHARACTERS),
39 "common ok and cancel characters"},
40 {ERR_REASON(UI_R_INDEX_TOO_LARGE), "index too large"},
41 {ERR_REASON(UI_R_INDEX_TOO_SMALL), "index too small"},
42 {ERR_REASON(UI_R_NO_RESULT_BUFFER), "no result buffer"},
43 {ERR_REASON(UI_R_RESULT_TOO_LARGE), "result too large"},
44 {ERR_REASON(UI_R_RESULT_TOO_SMALL), "result too small"},
45 {ERR_REASON(UI_R_UNKNOWN_CONTROL_COMMAND), "unknown control command"},
46 {0, NULL}
47};
a63d5eaa
RL
48
49#endif
50
51void ERR_load_UI_strings(void)
0f113f3e 52{
47a9d527 53#ifndef OPENSSL_NO_ERR
a63d5eaa 54
0f113f3e
MC
55 if (ERR_func_error_string(UI_str_functs[0].error) == NULL) {
56 ERR_load_strings(0, UI_str_functs);
57 ERR_load_strings(0, UI_str_reasons);
58 }
47a9d527 59#endif
0f113f3e 60}