Changeset 2083

Show
Ignore:
Timestamp:
02/26/2008 04:20:15 PM (4 months ago)
Author:
stbuehler
Message:

r2088@chromobil: stefan | 2008-02-26 17:02:27 +0100
Fix #1565: mod_compress should check if the request is already handled, e.g. by fastcgi

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/lighttpd-1.4.x/src/mod_compress.c

    r2081 r2083  
    603603        stat_cache_entry *sce = NULL; 
    604604 
     605        if (con->mode != DIRECT || con->http_status) return HANDLER_GO_ON; 
     606 
    605607        /* only GET and POST can get compressed */ 
    606608        if (con->request.http_method != HTTP_METHOD_GET &&