diff options
Diffstat (limited to 'src/imap/ngx_imap_proxy_module.c')
| -rw-r--r-- | src/imap/ngx_imap_proxy_module.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/imap/ngx_imap_proxy_module.c b/src/imap/ngx_imap_proxy_module.c index 7eb1b947b..97df3825b 100644 --- a/src/imap/ngx_imap_proxy_module.c +++ b/src/imap/ngx_imap_proxy_module.c @@ -566,15 +566,15 @@ ngx_imap_proxy_handler(ngx_event_t *ev) } else { if (ev->write) { - recv_action = "proxying and reading from upstream"; - send_action = "proxying and sending to client"; + recv_action = "proxying and reading from client"; + send_action = "proxying and sending to upstream"; src = s->connection; dst = c; b = s->buffer; } else { - recv_action = "proxying and reading from client"; - send_action = "proxying and sending to upstream"; + recv_action = "proxying and reading from upstream"; + send_action = "proxying and sending to client"; src = c; dst = s->connection; b = s->proxy->buffer; |
