From 40ab9803cb616ae6275f45357681fd77215785d0 Mon Sep 17 00:00:00 2001 From: Aaron Bannert Date: Thu, 13 Dec 2001 08:32:48 +0000 Subject: [PATCH] Modified for clarity. git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@92445 13f79535-47bb-0310-9956-ffa450edef68 --- modules/mappers/mod_negotiation.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/mappers/mod_negotiation.c b/modules/mappers/mod_negotiation.c index 5223eca691..89d921bef9 100644 --- a/modules/mappers/mod_negotiation.c +++ b/modules/mappers/mod_negotiation.c @@ -2841,7 +2841,8 @@ static int handle_multi(request_rec *r) int res; int j; - if (r->finfo.filetype != 0 || !(ap_allow_options(r) & OPT_MULTI)) { + if (r->finfo.filetype != APR_NOFILE + || !(ap_allow_options(r) & OPT_MULTI)) { return DECLINED; } -- 2.50.1