From: Jim Jagielski Date: Tue, 2 Oct 2007 21:16:00 +0000 (+0000) Subject: We should return X-Git-Tag: 2.3.0~1361 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=b89d1b6d85715aff3c8f7fa56203f5d77cd4f888;p=apache We should return git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@581388 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/modules/http/http_core.c b/modules/http/http_core.c index bb78d03996..94c55a6a7f 100644 --- a/modules/http/http_core.c +++ b/modules/http/http_core.c @@ -237,7 +237,7 @@ static int http_create_request(request_rec *r) static int http_send_options(request_rec *r) { if ((r->method_number == M_OPTIONS) && r->uri && (r->uri[0] == '*')) { - return OK; /* Send HTTP pong, without Allow header */ + return DONE; /* Send HTTP pong, without Allow header */ } return DECLINED; }