]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/comp/comp_err.c
Remove unused error/function codes.
[thirdparty/openssl.git] / crypto / comp / comp_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.
50cfd175 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
50cfd175
BM
9 */
10
dfeab068 11#include <stdio.h>
ec577822
BM
12#include <openssl/err.h>
13#include <openssl/comp.h>
dfeab068
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_COMP,func,0)
19# define ERR_REASON(reason) ERR_PACK(ERR_LIB_COMP,0,reason)
29dc3508 20
0f113f3e 21static ERR_STRING_DATA COMP_str_functs[] = {
b8fb5989
DSH
22 {ERR_FUNC(COMP_F_BIO_ZLIB_FLUSH), "bio_zlib_flush"},
23 {ERR_FUNC(COMP_F_BIO_ZLIB_NEW), "bio_zlib_new"},
24 {ERR_FUNC(COMP_F_BIO_ZLIB_READ), "bio_zlib_read"},
25 {ERR_FUNC(COMP_F_BIO_ZLIB_WRITE), "bio_zlib_write"},
0f113f3e
MC
26 {0, NULL}
27};
50cfd175 28
0f113f3e
MC
29static ERR_STRING_DATA COMP_str_reasons[] = {
30 {ERR_REASON(COMP_R_ZLIB_DEFLATE_ERROR), "zlib deflate error"},
31 {ERR_REASON(COMP_R_ZLIB_INFLATE_ERROR), "zlib inflate error"},
32 {ERR_REASON(COMP_R_ZLIB_NOT_SUPPORTED), "zlib not supported"},
33 {0, NULL}
34};
50cfd175 35
dfeab068
RE
36#endif
37
50cfd175 38void ERR_load_COMP_strings(void)
0f113f3e 39{
47a9d527 40#ifndef OPENSSL_NO_ERR
dfeab068 41
0f113f3e
MC
42 if (ERR_func_error_string(COMP_str_functs[0].error) == NULL) {
43 ERR_load_strings(0, COMP_str_functs);
44 ERR_load_strings(0, COMP_str_reasons);
45 }
47a9d527 46#endif
0f113f3e 47}