Commit f98a027a authored by William A. Rowe Jr's avatar William A. Rowe Jr
Browse files

  A debatable change, to return (an absolute) 404 if some of the extentions
  of every matching file isn't decodable by mod_mime, instead of 500.
  Adopted 404 as the result, per Roy Fielding.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89975 13f79535-47bb-0310-9956-ffa450edef68
parent 2e789a8c
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1076,7 +1076,7 @@ static int read_types_multi(negotiation_state *neg)
		      "Negotiation: discovered file(s) matching request: %s"
                      " (None could be negotiated).", 
                      r->filename);
        return HTTP_INTERNAL_SERVER_ERROR;
        return HTTP_NOT_FOUND;
    }

    set_vlist_validator(r, r);