Manual fixes after copyright consolidation
[oweals/openssl.git] / crypto / buffer / buf_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/buffer.h>
19
20 /* BEGIN ERROR CODES */
21 #ifndef OPENSSL_NO_ERR
22
23 # define ERR_FUNC(func) ERR_PACK(ERR_LIB_BUF,func,0)
24 # define ERR_REASON(reason) ERR_PACK(ERR_LIB_BUF,0,reason)
25
26 static ERR_STRING_DATA BUF_str_functs[] = {
27     {ERR_FUNC(BUF_F_BUF_MEM_GROW), "BUF_MEM_grow"},
28     {ERR_FUNC(BUF_F_BUF_MEM_GROW_CLEAN), "BUF_MEM_grow_clean"},
29     {ERR_FUNC(BUF_F_BUF_MEM_NEW), "BUF_MEM_new"},
30     {0, NULL}
31 };
32
33 static ERR_STRING_DATA BUF_str_reasons[] = {
34     {0, NULL}
35 };
36
37 #endif
38
39 void ERR_load_BUF_strings(void)
40 {
41 #ifndef OPENSSL_NO_ERR
42
43     if (ERR_func_error_string(BUF_str_functs[0].error) == NULL) {
44         ERR_load_strings(0, BUF_str_functs);
45         ERR_load_strings(0, BUF_str_reasons);
46     }
47 #endif
48 }