diff options
Diffstat (limited to '')
-rw-r--r-- | src/lib/libcrypto/conf/conf_def.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libcrypto/conf/conf_def.c b/src/lib/libcrypto/conf/conf_def.c index 31f2766246..5e194de60e 100644 --- a/src/lib/libcrypto/conf/conf_def.c +++ b/src/lib/libcrypto/conf/conf_def.c | |||
@@ -67,6 +67,7 @@ | |||
67 | #include "conf_def.h" | 67 | #include "conf_def.h" |
68 | #include <openssl/buffer.h> | 68 | #include <openssl/buffer.h> |
69 | #include <openssl/err.h> | 69 | #include <openssl/err.h> |
70 | #include "cryptlib.h" | ||
70 | 71 | ||
71 | static char *eat_ws(CONF *conf, char *p); | 72 | static char *eat_ws(CONF *conf, char *p); |
72 | static char *eat_alpha_numeric(CONF *conf, char *p); | 73 | static char *eat_alpha_numeric(CONF *conf, char *p); |
@@ -208,12 +209,12 @@ static int def_load(CONF *conf, const char *name, long *line) | |||
208 | static int def_load_bio(CONF *conf, BIO *in, long *line) | 209 | static int def_load_bio(CONF *conf, BIO *in, long *line) |
209 | { | 210 | { |
210 | #define BUFSIZE 512 | 211 | #define BUFSIZE 512 |
211 | char btmp[16]; | ||
212 | int bufnum=0,i,ii; | 212 | int bufnum=0,i,ii; |
213 | BUF_MEM *buff=NULL; | 213 | BUF_MEM *buff=NULL; |
214 | char *s,*p,*end; | 214 | char *s,*p,*end; |
215 | int again,n; | 215 | int again,n; |
216 | long eline=0; | 216 | long eline=0; |
217 | char btmp[DECIMAL_SIZE(eline)+1]; | ||
217 | CONF_VALUE *v=NULL,*tv; | 218 | CONF_VALUE *v=NULL,*tv; |
218 | CONF_VALUE *sv=NULL; | 219 | CONF_VALUE *sv=NULL; |
219 | char *section=NULL,*buf; | 220 | char *section=NULL,*buf; |