]> git.ipfire.org Git - thirdparty/openssl.git/blame - crypto/comp/comp_err.c
Manual fixes after copyright consolidation
[thirdparty/openssl.git] / crypto / comp / comp_err.c
CommitLineData
b6cff313
RS
1/*
2 * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
50cfd175 3 *
b6cff313
RS
4 * Licensed under the OpenSSL license (the "License"). You may not use
5 * this file except in compliance with the License. You can obtain a copy
6 * in the file LICENSE in the source distribution or at
7 * https://www.openssl.org/source/license.html
50cfd175
BM
8 */
9
0f113f3e
MC
10/*
11 * NOTE: this file was auto generated by the mkerr.pl script: any changes
59fc2b0f
BM
12 * made to it will be overwritten when the script next updates this file,
13 * only reason strings will be preserved.
dfeab068 14 */
50cfd175 15
dfeab068 16#include <stdio.h>
ec577822
BM
17#include <openssl/err.h>
18#include <openssl/comp.h>
dfeab068
RE
19
20/* BEGIN ERROR CODES */
cf1b7d96 21#ifndef OPENSSL_NO_ERR
29dc3508 22
0f113f3e
MC
23# define ERR_FUNC(func) ERR_PACK(ERR_LIB_COMP,func,0)
24# define ERR_REASON(reason) ERR_PACK(ERR_LIB_COMP,0,reason)
29dc3508 25
0f113f3e 26static ERR_STRING_DATA COMP_str_functs[] = {
b8fb5989
DSH
27 {ERR_FUNC(COMP_F_BIO_ZLIB_FLUSH), "bio_zlib_flush"},
28 {ERR_FUNC(COMP_F_BIO_ZLIB_NEW), "bio_zlib_new"},
29 {ERR_FUNC(COMP_F_BIO_ZLIB_READ), "bio_zlib_read"},
30 {ERR_FUNC(COMP_F_BIO_ZLIB_WRITE), "bio_zlib_write"},
0f113f3e
MC
31 {0, NULL}
32};
50cfd175 33
0f113f3e
MC
34static ERR_STRING_DATA COMP_str_reasons[] = {
35 {ERR_REASON(COMP_R_ZLIB_DEFLATE_ERROR), "zlib deflate error"},
36 {ERR_REASON(COMP_R_ZLIB_INFLATE_ERROR), "zlib inflate error"},
37 {ERR_REASON(COMP_R_ZLIB_NOT_SUPPORTED), "zlib not supported"},
38 {0, NULL}
39};
50cfd175 40
dfeab068
RE
41#endif
42
50cfd175 43void ERR_load_COMP_strings(void)
0f113f3e 44{
47a9d527 45#ifndef OPENSSL_NO_ERR
dfeab068 46
0f113f3e
MC
47 if (ERR_func_error_string(COMP_str_functs[0].error) == NULL) {
48 ERR_load_strings(0, COMP_str_functs);
49 ERR_load_strings(0, COMP_str_reasons);
50 }
47a9d527 51#endif
0f113f3e 52}