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

(-)httpd-2.0.44/modules/loggers/mod_log_config.c.orig (-1 / +1 lines)
Lines 1284-1290 Link Here
1284
                            "could not open transfer log file %s.", fname);
1284
                            "could not open transfer log file %s.", fname);
1285
            return NULL;
1285
            return NULL;
1286
        }
1286
        }
1287
        apr_file_inherit_set(fd);
1287
        apr_file_inherit_unset(fd);
1288
        return fd;
1288
        return fd;
1289
    }
1289
    }
1290
}
1290
}
(-)httpd-2.0.44/server/log.c.orig (-1 / +1 lines)
Lines 312-318 Link Here
312
            return DONE;
312
            return DONE;
313
        }
313
        }
314
314
315
        apr_file_inherit_set(s->error_log);
315
        apr_file_inherit_unset(s->error_log);
316
    }
316
    }
317
317
318
    return OK;
318
    return OK;

Return to bug 17206