changeset 2401:39f3b4f9989e

style fix: remove tabs
author Igor Sysoev <igor@sysoev.ru>
date Thu, 11 Dec 2008 10:22:25 +0000
parents 2c2b79633ded
children cd6a1abe11a7
files src/http/modules/ngx_http_geo_module.c
diffstat 1 files changed, 12 insertions(+), 12 deletions(-) [+]
line wrap: on
line diff
--- a/src/http/modules/ngx_http_geo_module.c
+++ b/src/http/modules/ngx_http_geo_module.c
@@ -697,22 +697,22 @@ ngx_http_geo_cidr(ngx_conf_t *cf, ngx_ht
             cidrin.mask = 0xffffffff;
 
         } else {
-	    rc = ngx_ptocidr(net, &cidrin);
+            rc = ngx_ptocidr(net, &cidrin);
 
-	    if (rc == NGX_ERROR) {
-		ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
-				   "invalid network \"%V\"", net);
-		return NGX_CONF_ERROR;
-	    }
+            if (rc == NGX_ERROR) {
+                ngx_conf_log_error(NGX_LOG_EMERG, cf, 0,
+                                   "invalid network \"%V\"", net);
+                return NGX_CONF_ERROR;
+            }
 
-	    if (rc == NGX_DONE) {
-		ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
-				   "low address bits of %V are meaningless",
+            if (rc == NGX_DONE) {
+                ngx_conf_log_error(NGX_LOG_WARN, cf, 0,
+                                   "low address bits of %V are meaningless",
                                    net);
-	    }
+            }
 
-	    cidrin.addr = ntohl(cidrin.addr);
-	    cidrin.mask = ntohl(cidrin.mask);
+            cidrin.addr = ntohl(cidrin.addr);
+            cidrin.mask = ntohl(cidrin.mask);
         }
 
         if (del) {