]> granicus.if.org Git - apache/commitdiff
Remove error message that was missed in an earlier merge with 1.3.x.
authorRoy T. Fielding <fielding@apache.org>
Sat, 28 Aug 1999 02:37:59 +0000 (02:37 +0000)
committerRoy T. Fielding <fielding@apache.org>
Sat, 28 Aug 1999 02:37:59 +0000 (02:37 +0000)
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@83829 13f79535-47bb-0310-9956-ffa450edef68

modules/http/http_core.c

index ed96a7d224067563fa181691af987909293973c9..330bacf56269bd8eebab9939aa94899bd1a3aead 100644 (file)
@@ -2480,18 +2480,13 @@ static int default_handler(request_rec *r)
     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) {