diff options
author | Igor Sysoev <igor@sysoev.ru> | 2006-10-25 15:38:02 +0000 |
---|---|---|
committer | Igor Sysoev <igor@sysoev.ru> | 2006-10-25 15:38:02 +0000 |
commit | 9644b8293aefaaf974d7c2822da63ed284c167fe (patch) | |
tree | b99a2bb4b135dba8d0ec1668bb9ad035cbb95bfa /src/imap/ngx_imap_handler.c | |
parent | 711dd6f79a18974d99e6e0703f2127b550714d96 (diff) | |
download | nginx-9644b8293aefaaf974d7c2822da63ed284c167fe.tar.gz nginx-9644b8293aefaaf974d7c2822da63ed284c167fe.zip |
fix log message
Diffstat (limited to 'src/imap/ngx_imap_handler.c')
-rw-r--r-- | src/imap/ngx_imap_handler.c | 4 |
1 files changed, 2 insertions, 2 deletions
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; |