aboutsummaryrefslogtreecommitdiff
path: root/src/mail/ngx_mail_proxy_module.c
diff options
context:
space:
mode:
authorIgor Sysoev <igor@sysoev.ru>2007-04-18 15:21:28 +0000
committerIgor Sysoev <igor@sysoev.ru>2007-04-18 15:21:28 +0000
commitfb958946b5bc5ac781ca1c6b0b87bdc7b6fb14a4 (patch)
tree17de6baa4544d002dc747d31b03f3cade9e261c0 /src/mail/ngx_mail_proxy_module.c
parente5e4c0000d1fa5a387c32bba0fd4fcad53fd3e9f (diff)
downloadnginx-fb958946b5bc5ac781ca1c6b0b87bdc7b6fb14a4.tar.gz
nginx-fb958946b5bc5ac781ca1c6b0b87bdc7b6fb14a4.zip
style fix: remove tabs
Diffstat (limited to 'src/mail/ngx_mail_proxy_module.c')
-rw-r--r--src/mail/ngx_mail_proxy_module.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mail/ngx_mail_proxy_module.c b/src/mail/ngx_mail_proxy_module.c
index 03f21eb4c..894c01d04 100644
--- a/src/mail/ngx_mail_proxy_module.c
+++ b/src/mail/ngx_mail_proxy_module.c
@@ -702,20 +702,20 @@ ngx_mail_proxy_read_response(ngx_mail_session_t *s, ngx_uint_t state)
case ngx_smtp_helo:
case ngx_smtp_noxclient:
- if (p[0] == '2' && p[1] == '5' && p[2] == '0') {
- return NGX_OK;
- }
- break;
+ if (p[0] == '2' && p[1] == '5' && p[2] == '0') {
+ return NGX_OK;
+ }
+ break;
case ngx_smtp_start:
case ngx_smtp_xclient:
- if (p[0] == '2' && p[1] == '2' && p[2] == '0') {
- return NGX_OK;
- }
- break;
+ if (p[0] == '2' && p[1] == '2' && p[2] == '0') {
+ return NGX_OK;
+ }
+ break;
}
- break;
+ break;
}
pcf = ngx_mail_get_module_srv_conf(s, ngx_mail_proxy_module);