# HG changeset patch # User Igor Sysoev # Date 1161790682 0 # Node ID 760ed037a5a4af296b9c685daf440c57080c621c # Parent a608349951cf2d2e4d3c358916efd62736ae3c60 fix log message diff --git a/src/imap/ngx_imap_handler.c b/src/imap/ngx_imap_handler.c --- 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;