diff options
Diffstat (limited to 'src/lib/libcrypto/conf/conf_lib.c')
-rw-r--r-- | src/lib/libcrypto/conf/conf_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/lib/libcrypto/conf/conf_lib.c b/src/lib/libcrypto/conf/conf_lib.c index 6a3cf109dd..2a3399d269 100644 --- a/src/lib/libcrypto/conf/conf_lib.c +++ b/src/lib/libcrypto/conf/conf_lib.c | |||
@@ -63,7 +63,7 @@ | |||
63 | #include <openssl/conf_api.h> | 63 | #include <openssl/conf_api.h> |
64 | #include <openssl/lhash.h> | 64 | #include <openssl/lhash.h> |
65 | 65 | ||
66 | const char *CONF_version="CONF" OPENSSL_VERSION_PTEXT; | 66 | const char CONF_version[]="CONF" OPENSSL_VERSION_PTEXT; |
67 | 67 | ||
68 | static CONF_METHOD *default_CONF_method=NULL; | 68 | static CONF_METHOD *default_CONF_method=NULL; |
69 | 69 | ||
@@ -184,7 +184,7 @@ long CONF_get_number(LHASH *conf,const char *group,const char *name) | |||
184 | if (status == 0) | 184 | if (status == 0) |
185 | { | 185 | { |
186 | /* This function does not believe in errors... */ | 186 | /* This function does not believe in errors... */ |
187 | ERR_get_error(); | 187 | ERR_clear_error(); |
188 | } | 188 | } |
189 | return result; | 189 | return result; |
190 | } | 190 | } |