style fix: remove tabs

This commit is contained in:
Igor Sysoev 2009-03-06 16:48:36 +00:00
parent 78c95de9da
commit b91fa66fc8

View File

@ -322,12 +322,12 @@ ngx_http_header_filter(ngx_http_request_t *r)
if (clcf->port_in_redirect) {
#if (NGX_HTTP_SSL)
if (r->connection->ssl)
port = (port == 443) ? 0 : port;
else
if (r->connection->ssl)
port = (port == 443) ? 0 : port;
else
#endif
port = (port == 80) ? 0 : port;
}
port = (port == 80) ? 0 : port;
}
if (port) {
len += sizeof(":65535") - 1;