comparison src/os/unix/ngx_solaris_init.c @ 80:6ae11d59d10e NGINX_0_1_40

nginx 0.1.40 *) Bugfix: if a client sent too long header line, then the request information did not logged in the error log. *) Bugfix: the "Set-Cookie" header line was not transferred when the "X-Accel-Redirect" was used; bug appeared in 0.1.39. *) Bugfix: the "Content-Disposition" header line was not transferred when the "X-Accel-Redirect" was used. *) Bugfix: the master process did not close the listen socket on the SIGQUIT signal. *) Bugfix: after on-line upgrade on Linux and Solaris the process name became shorter in the "ps" command.
author Igor Sysoev <http://sysoev.ru>
date Fri, 22 Jul 2005 00:00:00 +0400
parents b55cbf18157e
children e916a291e9aa
comparison
equal deleted inserted replaced
79:b7cf468d0667 80:6ae11d59d10e
59 59
60 60
61 void ngx_os_status(ngx_log_t *log) 61 void ngx_os_status(ngx_log_t *log)
62 { 62 {
63 63
64 ngx_log_error(NGX_LOG_INFO, log, 0, "OS: %s %s", 64 ngx_log_error(NGX_LOG_NOTICE, log, 0, "OS: %s %s",
65 ngx_solaris_sysname, ngx_solaris_release); 65 ngx_solaris_sysname, ngx_solaris_release);
66 66
67 ngx_log_error(NGX_LOG_INFO, log, 0, "version: %s", 67 ngx_log_error(NGX_LOG_NOTICE, log, 0, "version: %s",
68 ngx_solaris_version); 68 ngx_solaris_version);
69 69
70 ngx_posix_status(log); 70 ngx_posix_status(log);
71 } 71 }