comparison src/event/ngx_event_openssl.c @ 968:1b60ecc8cdb7

OPENSSL_config()
author Igor Sysoev <igor@sysoev.ru>
date Tue, 02 Jan 2007 23:32:41 +0000
parents cec32b3753ac
children 065b39794fff
comparison
equal deleted inserted replaced
967:1cb178720355 968:1b60ecc8cdb7
88 88
89 89
90 ngx_int_t 90 ngx_int_t
91 ngx_ssl_init(ngx_log_t *log) 91 ngx_ssl_init(ngx_log_t *log)
92 { 92 {
93 #if OPENSSL_VERSION_NUMBER >= 0x00907000
94 OPENSSL_config(NULL);
95 #endif
96
93 SSL_library_init(); 97 SSL_library_init();
94 SSL_load_error_strings(); 98 SSL_load_error_strings();
95 99
96 #if (NGX_SSL_ENGINE) 100 #if (NGX_SSL_ENGINE)
97 ENGINE_load_builtin_engines(); 101 ENGINE_load_builtin_engines();