diff options
Diffstat (limited to 'server/log.c')
-rw-r--r-- | server/log.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/server/log.c b/server/log.c index 3763e8b1fc..cb84024bbc 100644 --- a/server/log.c +++ b/server/log.c @@ -212,7 +212,7 @@ AP_DECLARE(apr_status_t) ap_replace_stderr_log(apr_pool_t *p, /* * You might ponder why stderr_pool should survive? * The trouble is, stderr_pool may have s_main->error_log, - * so we aren't in a position to destory stderr_pool until + * so we aren't in a position to destroy stderr_pool until * the next recycle. There's also an apparent bug which * is not; if some folk decided to call this function before * the core open error logs hook, this pool won't survive. @@ -239,7 +239,7 @@ static void log_child_errfn(apr_pool_t *pool, apr_status_t err, } /* Create a child process running PROGNAME with a pipe connected to - * the childs stdin. The write-end of the pipe will be placed in + * the child's stdin. The write-end of the pipe will be placed in * *FPIN on successful return. If dummy_stderr is non-zero, the * stderr for the child will be the same as the stdout of the parent. * Otherwise the child will inherit the stderr from the parent. */ @@ -1121,7 +1121,7 @@ static void log_error_core(const char *file, int line, int module_index, if (!logf && !(errorlog_provider && errorlog_provider_handle)) { /* There is no file to send the log message to (or it is - * redirected to /dev/null and therefore any formating done below + * redirected to /dev/null and therefore any formatting done below * would be lost anyway) and there is no initialized log provider * available, so we just return here. */ |