comparison src/http/modules/ngx_http_charset_filter_module.c @ 1723:9b047c9e96c1 stable-0.5

r1587, r1588, r1589, r1590, r1592, r1599, r1629, r1636, r1674, r1681, r1682, r1683 merge: typo and style fixes
author Igor Sysoev <igor@sysoev.ru>
date Wed, 12 Dec 2007 20:49:45 +0000
parents b766d9c0a2be
children 461d00e8a2a9
comparison
equal deleted inserted replaced
1722:3b7262e720c1 1723:9b047c9e96c1
364 source_charset); 364 source_charset);
365 365
366 no_charset_map: 366 no_charset_map:
367 367
368 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0, 368 ngx_log_error(NGX_LOG_ERR, r->connection->log, 0,
369 "no \"charset_map\" between the charsets " 369 "no \"charset_map\" between the charsets \"%V\" and \"%V\"",
370 "\"%V\" and \"%V\"", from, to); 370 from, to);
371 371
372 return ngx_http_next_header_filter(r); 372 return ngx_http_next_header_filter(r);
373 } 373 }
374 374
375 375
1517 goto next; 1517 goto next;
1518 } 1518 }
1519 } 1519 }
1520 1520
1521 ngx_log_error(NGX_LOG_EMERG, cf->log, 0, 1521 ngx_log_error(NGX_LOG_EMERG, cf->log, 0,
1522 " no \"charset_map\" between the charsets " 1522 "no \"charset_map\" between the charsets \"%V\" and \"%V\"",
1523 "\"%V\" and \"%V\"", 1523 &charset[c].name, &charset[recode[i].dst].name);
1524 &charset[c].name, &charset[recode[i].dst].name);
1525 return NGX_ERROR; 1524 return NGX_ERROR;
1526 1525
1527 next: 1526 next:
1528 continue; 1527 continue;
1529 } 1528 }