View | Details | Raw Unified | Return to bug 58498
Collapse All | Expand All

(-)httpd-2.4.17/modules/generators/mod_autoindex.c (-4 / +1 lines)
Lines 2274-2283 Link Here
2274
    autoindex_config_rec *d;
2274
    autoindex_config_rec *d;
2275
    int allow_opts;
2275
    int allow_opts;
2276
2276
2277
    if (strcmp(r->handler,DIR_MAGIC_TYPE) && !AP_IS_DEFAULT_HANDLER_NAME(r->handler)) {
2277
    if(strcmp(r->handler,DIR_MAGIC_TYPE)) {
2278
        return DECLINED;
2279
    }
2280
    if (r->finfo.filetype != APR_DIR) {
2281
        return DECLINED;
2278
        return DECLINED;
2282
    }
2279
    }
2283
2280

Return to bug 58498