summaryrefslogtreecommitdiff
path: root/src/core/ngx_log.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2009-05-18 16:31:31 +0000
committerJonathan Kolb <jon@b0g.us>2009-05-18 16:31:31 +0000
commit1b271801c3e9b1464a24c2ab3e104b7b2fb530a6 (patch)
treee423ec50dc241033b07fd1954f3c6aea1681bc3c /src/core/ngx_log.c
parent5e44792c14ec6bf5b0ea68717d754ba0105ae529 (diff)
downloadnginx-0.6.37.tar.gz
Changes with nginx 0.6.37 18 May 2009v0.6.37
*) Feature: Microsoft specific "AUTH LOGIN with User Name" mode support in mail proxy server. Thanks to Maxim Dounin. *) Bugfix: nginx could not be built on platforms different from i386, amd64, sparc, and ppc; the bug had appeared in 0.6.36.
Diffstat (limited to 'src/core/ngx_log.c')
-rw-r--r--src/core/ngx_log.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/ngx_log.c b/src/core/ngx_log.c
index a9221db6e..6eab24ad7 100644
--- a/src/core/ngx_log.c
+++ b/src/core/ngx_log.c
@@ -184,9 +184,9 @@ ngx_log_debug_core(ngx_log_t *log, ngx_err_t err, const char *fmt, ...)
void
-ngx_log_abort(ngx_err_t err, const char *text)
+ngx_log_abort(ngx_err_t err, const char *text, void *param)
{
- ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, err, text);
+ ngx_log_error(NGX_LOG_ALERT, ngx_cycle->log, err, text, param);
}