diff src/mail/ngx_mail_proxy_module.c @ 1166:bde5e4134759

style fix: remove tabs
author Igor Sysoev <igor@sysoev.ru>
date Wed, 18 Apr 2007 15:21:28 +0000
parents 68f30ab68bb7
children be2e13691c60
line wrap: on
line diff
--- 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_se
 
         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);