From: Jeff Trawick Date: Thu, 23 Aug 2001 20:29:47 +0000 (+0000) Subject: please no // in Apache code... it doesn't compile everywhere X-Git-Tag: 2.0.25~124 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=616e82f008df13ec19831293efd7c478932bd4fa;p=apache 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 --- 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; }