comparison src/http/modules/ngx_http_ssi_filter_module.c @ 6510:a3be359e6c7d

Fixed typos.
author Alessandro Ghedini <alessandro@cloudflare.com>
date Mon, 11 Apr 2016 16:47:11 +0100
parents 293413010217
children 7a6456398fc3
comparison
equal deleted inserted replaced
6509:7640d6c213e1 6510:a3be359e6c7d
2523 if (rc != NGX_OK) { 2523 if (rc != NGX_OK) {
2524 return rc; 2524 return rc;
2525 } 2525 }
2526 2526
2527 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 2527 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
2528 "evaluted left: \"%V\"", &left); 2528 "evaluated left: \"%V\"", &left);
2529 2529
2530 if (p == last) { 2530 if (p == last) {
2531 if (left.len) { 2531 if (left.len) {
2532 ctx->output = 1; 2532 ctx->output = 1;
2533 ctx->output_chosen = 1; 2533 ctx->output_chosen = 1;
2587 if (rc != NGX_OK) { 2587 if (rc != NGX_OK) {
2588 return rc; 2588 return rc;
2589 } 2589 }
2590 2590
2591 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0, 2591 ngx_log_debug1(NGX_LOG_DEBUG_HTTP, r->connection->log, 0,
2592 "evaluted right: \"%V\"", &right); 2592 "evaluated right: \"%V\"", &right);
2593 2593
2594 if (noregex) { 2594 if (noregex) {
2595 if (left.len != right.len) { 2595 if (left.len != right.len) {
2596 rc = -1; 2596 rc = -1;
2597 2597