]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/buffer/buf_err.c
Remove unused error/function codes.
[thirdparty/openssl.git] / crypto / buffer / buf_err.c
CommitLineData
b6cff313 1/*
0cd0a820 2 * Generated by util/mkerr.pl DO NOT EDIT
b6cff313 3 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
6d311938 4 *
b6cff313
RS
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
6d311938
DSH
9 */
10
d02b48c6 11#include <stdio.h>
ec577822
BM
12#include <openssl/err.h>
13#include <openssl/buffer.h>
d02b48c6
RE
14
15/* BEGIN ERROR CODES */
cf1b7d96 16#ifndef OPENSSL_NO_ERR
29dc3508 17
0f113f3e
MC
18# define ERR_FUNC(func) ERR_PACK(ERR_LIB_BUF,func,0)
19# define ERR_REASON(reason) ERR_PACK(ERR_LIB_BUF,0,reason)
29dc3508 20
0f113f3e 21static ERR_STRING_DATA BUF_str_functs[] = {
0f113f3e
MC
22 {ERR_FUNC(BUF_F_BUF_MEM_GROW), "BUF_MEM_grow"},
23 {ERR_FUNC(BUF_F_BUF_MEM_GROW_CLEAN), "BUF_MEM_grow_clean"},
24 {ERR_FUNC(BUF_F_BUF_MEM_NEW), "BUF_MEM_new"},
0f113f3e
MC
25 {0, NULL}
26};
6d311938 27
0f113f3e
MC
28static ERR_STRING_DATA BUF_str_reasons[] = {
29 {0, NULL}
30};
d02b48c6 31
58964a49
RE
32#endif
33
6b691a5c 34void ERR_load_BUF_strings(void)
0f113f3e 35{
47a9d527 36#ifndef OPENSSL_NO_ERR
d02b48c6 37
0f113f3e
MC
38 if (ERR_func_error_string(BUF_str_functs[0].error) == NULL) {
39 ERR_load_strings(0, BUF_str_functs);
40 ERR_load_strings(0, BUF_str_reasons);
41 }
47a9d527 42#endif
0f113f3e 43}