提交 957b6db3 编写于 作者: B Bodo Möller

fix formatting of automatically generated error section

上级 a14e2d9d
...@@ -618,6 +618,7 @@ int BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args); ...@@ -618,6 +618,7 @@ int BIO_vsnprintf(char *buf, size_t n, const char *format, va_list args);
* made after this point may be overwritten when the script is next run. * made after this point may be overwritten when the script is next run.
*/ */
void ERR_load_BIO_strings(void); void ERR_load_BIO_strings(void);
/* Error codes for the BIO functions. */ /* Error codes for the BIO functions. */
/* Function codes. */ /* Function codes. */
......
...@@ -198,6 +198,7 @@ int CONF_parse_list(const char *list, int sep, int nospc, ...@@ -198,6 +198,7 @@ int CONF_parse_list(const char *list, int sep, int nospc,
* made after this point may be overwritten when the script is next run. * made after this point may be overwritten when the script is next run.
*/ */
void ERR_load_CONF_strings(void); void ERR_load_CONF_strings(void);
/* Error codes for the CONF functions. */ /* Error codes for the CONF functions. */
/* Function codes. */ /* Function codes. */
......
...@@ -625,6 +625,7 @@ typedef int (*dynamic_bind_engine)(ENGINE *e, const char *id, ...@@ -625,6 +625,7 @@ typedef int (*dynamic_bind_engine)(ENGINE *e, const char *id,
* made after this point may be overwritten when the script is next run. * made after this point may be overwritten when the script is next run.
*/ */
void ERR_load_ENGINE_strings(void); void ERR_load_ENGINE_strings(void);
/* Error codes for the ENGINE functions. */ /* Error codes for the ENGINE functions. */
/* Function codes. */ /* Function codes. */
......
...@@ -269,6 +269,7 @@ EOF ...@@ -269,6 +269,7 @@ EOF
if($static) { if($static) {
print OUT <<"EOF"; print OUT <<"EOF";
${staticloader}void ERR_load_${lib}_strings(void); ${staticloader}void ERR_load_${lib}_strings(void);
EOF EOF
} else { } else {
print OUT <<"EOF"; print OUT <<"EOF";
...@@ -276,6 +277,7 @@ ${staticloader}void ERR_load_${lib}_strings(void); ...@@ -276,6 +277,7 @@ ${staticloader}void ERR_load_${lib}_strings(void);
${staticloader}void ERR_unload_${lib}_strings(void); ${staticloader}void ERR_unload_${lib}_strings(void);
${staticloader}void ERR_${lib}_error(int function, int reason, char *file, int line); ${staticloader}void ERR_${lib}_error(int function, int reason, char *file, int line);
#define ${lib}err(f,r) ERR_${lib}_error((f),(r),__FILE__,__LINE__) #define ${lib}err(f,r) ERR_${lib}_error((f),(r),__FILE__,__LINE__)
EOF EOF
} }
print OUT <<"EOF"; print OUT <<"EOF";
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册