From b3c43f2cf3329a80727ef524f37eefbc38db042a Mon Sep 17 00:00:00 2001 From: Brian Pane Date: Sat, 29 Dec 2001 21:34:04 +0000 Subject: [PATCH] Fix to make xbithack work again git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92652 13f79535-47bb-0310-9956-ffa450edef68 --- modules/filters/mod_include.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/filters/mod_include.c b/modules/filters/mod_include.c index b135f09e95..045576dcf9 100644 --- a/modules/filters/mod_include.c +++ b/modules/filters/mod_include.c @@ -3220,7 +3220,7 @@ static int include_fixup(request_rec *r) return DECLINED; } - if (!r->handler || strcmp(r->handler, "text/html")) { + if (r->handler && strcmp(r->handler, "text/html")) { return DECLINED; } } -- 2.50.1