fielding 99/08/27 19:38:00
Modified: src/main http_core.c Log: Remove error message that was missed in an earlier merge with 1.3.x. Revision Changes Path 1.9 +1 -6 apache-2.0/src/main/http_core.c Index: http_core.c =================================================================== RCS file: /home/cvs/apache-2.0/src/main/http_core.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -r1.8 -r1.9 --- http_core.c 1999/08/26 16:34:13 1.8 +++ http_core.c 1999/08/28 02:37:59 1.9 @@ -2480,18 +2480,13 @@ int convert_flag; #endif - if (r->handler) { - ap_log_error(APLOG_MARK, APLOG_NOERRNO | APLOG_WARNING, - r->server, "handler \"%s\" not found, using default " - "handler for : %s", r->handler, r->filename); - } /* This handler has no use for a request body (yet), but we still * need to read and discard it if the client sent one. */ if ((errstatus = ap_discard_request_body(r)) != OK) { return errstatus; } - + r->allowed |= (1 << M_GET) | (1 << M_OPTIONS); if (r->method_number == M_INVALID) {