Accept-Encoding is not present.
Reported by Roy Fielding for http://cvs.apache.org/viewcvs/ with Safari.
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@103803
13f79535-47bb-0310-9956-
ffa450edef68
[Remove entries to the current 2.0 section below, when backported]
+ *) Fix bug in mod_deflate that unconditionally sent deflate'd output
+ even when Accept-Encoding is not present. [Justin Erenkrantz]
+
*) Pass environment variables through to piped loggers, resolving
a regression since 1.3. [Ken Coar, Jeff Trawick]
/* force-gzip will just force it out regardless if the browser
* can actually do anything with it.
*/
- if (apr_table_get(r->subprocess_env, "force-gzip") != NULL) {
+ if (!apr_table_get(r->subprocess_env, "force-gzip")) {
const char *accepts;
/* if they don't have the line, then they can't play */
accepts = apr_table_get(r->headers_in, "Accept-Encoding");