missing the needed comparison on the request. this allows subrequests to
insert filters properly (by stopping the scan before transitioning to
the parent request's filters)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@86085
13f79535-47bb-0310-9956-
ffa450edef68
** corresponds to a different request.
*/
#define INSERT_BEFORE(f, before_this) ((before_this) == NULL \
- || (before_this)->ftype > (f)->ftype)
+ || (before_this)->ftype > (f)->ftype \
+ || (before_this)->r != (f)->r)
static apr_status_t filter_cleanup(void *ctx)