/[Apache-SVN]/httpd/httpd/trunk/modules/filters/mod_deflate.c
ViewVC logotype

Diff of /httpd/httpd/trunk/modules/filters/mod_deflate.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 726791, Mon Dec 15 20:22:07 2008 UTC revision 726794, Mon Dec 15 20:36:47 2008 UTC
# Line 157  static int check_gzip(request_rec *r, ap Line 157  static int check_gzip(request_rec *r, ap
157              }              }
158          }          }
159      }      }
160        /*
161         * If we have dealt with the headers above but content_encoding was set
162         * before sync it with the new value in the hdrs table as
163         * r->content_encoding takes precedence later on in the http_header_filter
164         * and hence would destroy what we have just set in the hdrs table.
165         */
166        if (hdrs && r->content_encoding) {
167            r->content_encoding = apr_table_get(hdrs, "Content-Encoding");
168        }
169      return found;      return found;
170  }  }
171    

Legend:
Removed from v.726791  
changed lines
  Added in v.726794

apache@apache.org
ViewVC Help
Powered by ViewVC 1.1.2