From 616e82f008df13ec19831293efd7c478932bd4fa Mon Sep 17 00:00:00 2001 From: Jeff Trawick Date: Thu, 23 Aug 2001 20:29:47 +0000 Subject: [PATCH] please no // in Apache code... it doesn't compile everywhere a note about why it is commented out would be appropriate too git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@90581 13f79535-47bb-0310-9956-ffa450edef68 --- modules/mappers/mod_negotiation.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/modules/mappers/mod_negotiation.c b/modules/mappers/mod_negotiation.c index 2f7fd0bdb0..4c11f397ce 100644 --- a/modules/mappers/mod_negotiation.c +++ b/modules/mappers/mod_negotiation.c @@ -2737,9 +2737,10 @@ static int handle_map_file(request_rec *r) if ((res = ap_discard_request_body(r)) != OK) { return res; } - //if (r->method_number == M_OPTIONS) { - // return ap_send_http_options(r); - //} + /*if (r->method_number == M_OPTIONS) { + * return ap_send_http_options(r); + *} + */ if (r->method_number != M_GET && r->method_number != M_POST) { return HTTP_METHOD_NOT_ALLOWED; } -- 2.50.1