diff options
author | Xavier Roche <xroche@users.noreply.github.com> | 2013-05-19 15:43:01 +0000 |
---|---|---|
committer | Xavier Roche <xroche@users.noreply.github.com> | 2013-05-19 15:43:01 +0000 |
commit | 9c8092eda6e1e63d28dc4299353cf1a8c30b0aa5 (patch) | |
tree | 8bbdbde0fa86d1906302574376d3268bbb7dcca9 /src/htslib.c | |
parent | 84eb03f43a6bc47fe041b893a9aaa6773ffc29d5 (diff) |
Fixed warnings
Diffstat (limited to 'src/htslib.c')
-rw-r--r-- | src/htslib.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/htslib.c b/src/htslib.c index cbb0005..eb20aae 100644 --- a/src/htslib.c +++ b/src/htslib.c @@ -5534,8 +5534,7 @@ HTSEXT_API int hts_init(void) { Initialize the OpensSSL library */ if (!openssl_ctx) { - if (SSL_load_error_strings) - SSL_load_error_strings(); + SSL_load_error_strings(); SSL_library_init(); ///if (SSL_load_error_strings) SSL_load_error_strings(); //if (ERR_load_crypto_strings) ERR_load_crypto_strings(); |