style fix: remove tabs
Igor Sysoev
13 years ago
696 | 696 | cidrin.mask = 0xffffffff; |
697 | 697 | |
698 | 698 | } else { |
699 | rc = ngx_ptocidr(net, &cidrin); | |
700 | ||
701 | if (rc == NGX_ERROR) { | |
702 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, | |
703 | "invalid network \"%V\"", net); | |
704 | return NGX_CONF_ERROR; | |
705 | } | |
706 | ||
707 | if (rc == NGX_DONE) { | |
708 | ngx_conf_log_error(NGX_LOG_WARN, cf, 0, | |
709 | "low address bits of %V are meaningless", | |
699 | rc = ngx_ptocidr(net, &cidrin); | |
700 | ||
701 | if (rc == NGX_ERROR) { | |
702 | ngx_conf_log_error(NGX_LOG_EMERG, cf, 0, | |
703 | "invalid network \"%V\"", net); | |
704 | return NGX_CONF_ERROR; | |
705 | } | |
706 | ||
707 | if (rc == NGX_DONE) { | |
708 | ngx_conf_log_error(NGX_LOG_WARN, cf, 0, | |
709 | "low address bits of %V are meaningless", | |
710 | 710 | net); |
711 | } | |
712 | ||
713 | cidrin.addr = ntohl(cidrin.addr); | |
714 | cidrin.mask = ntohl(cidrin.mask); | |
711 | } | |
712 | ||
713 | cidrin.addr = ntohl(cidrin.addr); | |
714 | cidrin.mask = ntohl(cidrin.mask); | |
715 | 715 | } |
716 | 716 | |
717 | 717 | if (del) { |