even if we can't detect the content type of the
uncompressed content.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@756678
13f79535-47bb-0310-9956-
ffa450edef68
return 0;
if ((newsize = uncompress(r, i, &newbuf, nbytes)) > 0) {
+ /* set encoding type in the request record */
+ r->content_encoding = compr[i].encoding;
+
if (tryit(r, newbuf, newsize, 0) != OK) {
return 0;
}
-
- /* set encoding type in the request record */
- r->content_encoding = compr[i].encoding;
}
return 1;
}