b8ff4a6a36451f0b3247e1c0abe0c1d247ba81da
[openssl.git] / crypto / comp / comp_err.c
1 /*
2  * Copyright 1995-2016 The OpenSSL Project Authors. All Rights Reserved.
3  *
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
8  */
9
10 /*
11  * NOTE: this file was auto generated by the mkerr.pl script: any changes
12  * made to it will be overwritten when the script next updates this file,
13  * only reason strings will be preserved.
14  */
15
16 #include <stdio.h>
17 #include <openssl/err.h>
18 #include <openssl/comp.h>
19
20 /* BEGIN ERROR CODES */
21 #ifndef OPENSSL_NO_ERR
22
23 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_COMP,func,0)
24 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_COMP,0,reason)
25
26 static ERR_STRING_DATA COMP_str_functs[] = {
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"},
31     {0, NULL}
32 };
33
34 static 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 };
40
41 #endif
42
43 void ERR_load_COMP_strings(void)
44 {
45 #ifndef OPENSSL_NO_ERR
46
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     }
51 #endif
52 }