comparison src/http/ngx_http_special_response.c @ 2882:896db5a09bd2

reset content_type hash value, this fixes a bug when XSLT responses could not be processed by SSI, charset, and gzip filters
author Igor Sysoev <igor@sysoev.ru>
date Mon, 25 May 2009 09:06:29 +0000
parents 5364c3419a62
children a63dd08379c4
comparison
equal deleted inserted replaced
2881:13b63d682228 2882:896db5a09bd2
608 } 608 }
609 609
610 r->headers_out.content_type_len = sizeof("text/html") - 1; 610 r->headers_out.content_type_len = sizeof("text/html") - 1;
611 r->headers_out.content_type.len = sizeof("text/html") - 1; 611 r->headers_out.content_type.len = sizeof("text/html") - 1;
612 r->headers_out.content_type.data = (u_char *) "text/html"; 612 r->headers_out.content_type.data = (u_char *) "text/html";
613 r->headers_out.content_type_lowcase = NULL;
613 614
614 } else { 615 } else {
615 r->headers_out.content_length_n = -1; 616 r->headers_out.content_length_n = -1;
616 } 617 }
617 618
710 r->err_status = NGX_HTTP_OK; 711 r->err_status = NGX_HTTP_OK;
711 712
712 r->headers_out.content_type_len = sizeof("text/html") - 1; 713 r->headers_out.content_type_len = sizeof("text/html") - 1;
713 r->headers_out.content_type.len = sizeof("text/html") - 1; 714 r->headers_out.content_type.len = sizeof("text/html") - 1;
714 r->headers_out.content_type.data = (u_char *) "text/html"; 715 r->headers_out.content_type.data = (u_char *) "text/html";
716 r->headers_out.content_type_lowcase = NULL;
715 717
716 r->headers_out.location->hash = 0; 718 r->headers_out.location->hash = 0;
717 r->headers_out.location = NULL; 719 r->headers_out.location = NULL;
718 720
719 r->headers_out.content_length_n = size; 721 r->headers_out.content_length_n = size;