comparison src/os/unix/ngx_posix_init.c @ 90:71c46860eb55 NGINX_0_1_45

nginx 0.1.45 *) Change: the "ssl_engine" directive was canceled in the ngx_http_ssl_module and now is introduced at global level. *) Bugfix: the responses with SSI subrequests did not transferred via SSL connection. *) Various bug fixes in the IMAP/POP3 proxy.
author Igor Sysoev <http://sysoev.ru>
date Thu, 08 Sep 2005 00:00:00 +0400
parents e916a291e9aa
children 45f7329b4bd0
comparison
equal deleted inserted replaced
89:7ed9767f1c4e 90:71c46860eb55
28 28
29 29
30 ngx_int_t 30 ngx_int_t
31 ngx_os_init(ngx_log_t *log) 31 ngx_os_init(ngx_log_t *log)
32 { 32 {
33 ngx_log_error(NGX_LOG_NOTICE, log, 0, NGINX_VER);
34
35 #if (NGX_HAVE_OS_SPECIFIC_INIT) 33 #if (NGX_HAVE_OS_SPECIFIC_INIT)
36 if (ngx_os_specific_init(log) != NGX_OK) { 34 if (ngx_os_specific_init(log) != NGX_OK) {
37 return NGX_ERROR; 35 return NGX_ERROR;
38 } 36 }
39 #endif 37 #endif
65 63
66 64
67 void 65 void
68 ngx_os_status(ngx_log_t *log) 66 ngx_os_status(ngx_log_t *log)
69 { 67 {
68 ngx_log_error(NGX_LOG_NOTICE, log, 0, NGINX_VER);
69
70 #if (NGX_HAVE_OS_SPECIFIC_INIT) 70 #if (NGX_HAVE_OS_SPECIFIC_INIT)
71 ngx_os_specific_status(log); 71 ngx_os_specific_status(log);
72 #endif 72 #endif
73 73
74 ngx_log_error(NGX_LOG_NOTICE, log, 0, 74 ngx_log_error(NGX_LOG_NOTICE, log, 0,