comparison src/os/unix/ngx_posix_init.c @ 541:b09ee85d0ac8 release-0.1.45

nginx-0.1.45-RELEASE import *) 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 <igor@sysoev.ru>
date Thu, 08 Sep 2005 14:36:09 +0000
parents 371c1cee100d
children ecd9c160f25b
comparison
equal deleted inserted replaced
540:983c48ab79bb 541:b09ee85d0ac8
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,