diff options
Diffstat (limited to 'src/lib/libcrypto/conf/conf_api.c')
-rw-r--r-- | src/lib/libcrypto/conf/conf_api.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/lib/libcrypto/conf/conf_api.c b/src/lib/libcrypto/conf/conf_api.c index f5fcbb9f6b..22617e5fa1 100644 --- a/src/lib/libcrypto/conf/conf_api.c +++ b/src/lib/libcrypto/conf/conf_api.c | |||
@@ -64,7 +64,6 @@ | |||
64 | #endif | 64 | #endif |
65 | 65 | ||
66 | #include <assert.h> | 66 | #include <assert.h> |
67 | #include <stdlib.h> | ||
68 | #include <string.h> | 67 | #include <string.h> |
69 | #include <openssl/conf.h> | 68 | #include <openssl/conf.h> |
70 | #include <openssl/conf_api.h> | 69 | #include <openssl/conf_api.h> |
@@ -286,7 +285,7 @@ CONF_VALUE *_CONF_new_section(CONF *conf, const char *section) | |||
286 | v->value=(char *)sk; | 285 | v->value=(char *)sk; |
287 | 286 | ||
288 | vv=lh_CONF_VALUE_insert(conf->data,v); | 287 | vv=lh_CONF_VALUE_insert(conf->data,v); |
289 | OPENSSL_assert(vv == NULL); | 288 | assert(vv == NULL); |
290 | ok=1; | 289 | ok=1; |
291 | err: | 290 | err: |
292 | if (!ok) | 291 | if (!ok) |