From: Igor Sysoev Date: Wed, 25 Oct 2006 15:38:02 +0000 (+0000) Subject: fix log message X-Git-Tag: release-0.4.11~2 X-Git-Url: http://www.kaiwu.me/postgresql/commit/?a=commitdiff_plain;h=9644b8293aefaaf974d7c2822da63ed284c167fe;p=nginx.git fix log message --- diff --git a/src/imap/ngx_imap_handler.c b/src/imap/ngx_imap_handler.c index 3bd727edd..26513940b 100644 --- a/src/imap/ngx_imap_handler.c +++ b/src/imap/ngx_imap_handler.c @@ -1063,7 +1063,7 @@ ngx_pop3_auth_state(ngx_event_t *rev) if (p == last) { ngx_log_error(NGX_LOG_INFO, c->log, 0, - "client sent invalid login/password " + "client sent invalid login " "in AUTH PLAIN command"); rc = NGX_IMAP_PARSE_INVALID_COMMAND; break; @@ -1075,7 +1075,7 @@ ngx_pop3_auth_state(ngx_event_t *rev) if (p == last) { ngx_log_error(NGX_LOG_INFO, c->log, 0, - "client sent invalid login/password " + "client sent invalid password " "in AUTH PLAIN command"); rc = NGX_IMAP_PARSE_INVALID_COMMAND; break;