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

  Allow a slightly larger range of acceptable responses.


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@89900 13f79535-47bb-0310-9956-ffa450edef68
parent cae46b52
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1162,7 +1162,7 @@ static struct ent *make_autoindex_entry(const apr_finfo_t *dirent,
    }

    if ((rr->finfo.filetype != APR_DIR && rr->finfo.filetype != APR_REG)
        || rr->status != OK) {
        || (rr->status != OK && ap_is_HTTP_SUCCESS(rr->status))) {
        ap_destroy_sub_req(rr);
        return (NULL);
    }