comparison src/http/modules/ngx_http_proxy_module.c @ 1339:50b6cd5bc2e2

style fix
author Igor Sysoev <igor@sysoev.ru>
date Mon, 23 Jul 2007 12:32:34 +0000
parents 5383f5232364
children 7443fbe0b013
comparison
equal deleted inserted replaced
1338:b568424b5fd6 1339:50b6cd5bc2e2
2235 plcf->host_header = u.host; 2235 plcf->host_header = u.host;
2236 2236
2237 if (port == 80) { 2237 if (port == 80) {
2238 plcf->port.len = sizeof("80") - 1; 2238 plcf->port.len = sizeof("80") - 1;
2239 plcf->port.data = (u_char *) "80"; 2239 plcf->port.data = (u_char *) "80";
2240
2240 } else { 2241 } else {
2241 plcf->port.len = sizeof("443") - 1; 2242 plcf->port.len = sizeof("443") - 1;
2242 plcf->port.data = (u_char *) "443"; 2243 plcf->port.data = (u_char *) "443";
2243 } 2244 }
2244 2245