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

(-)server/core.c (-1 / +2 lines)
Lines 4255-4261 Link Here
4255
    if (r->method_number == M_GET || r->method_number == M_POST) {
4255
    if (r->method_number == M_GET || r->method_number == M_POST) {
4256
        if (r->finfo.filetype == APR_NOFILE) {
4256
        if (r->finfo.filetype == APR_NOFILE) {
4257
            ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO(00128)
4257
            ap_log_rerror(APLOG_MARK, APLOG_INFO, 0, r, APLOGNO(00128)
4258
                          "File does not exist: %s", r->filename);
4258
                          "File does not exist: %s",
4259
                          apr_pstrcat(r->pool, r->filename, r->path_info, NULL));
4259
            return HTTP_NOT_FOUND;
4260
            return HTTP_NOT_FOUND;
4260
        }
4261
        }
4261
4262

Return to bug 39944