summaryrefslogtreecommitdiffstats
path: root/os/tpf/os.c
diff options
context:
space:
mode:
authorGreg Stein <gstein@apache.org>2000-11-26 05:47:43 +0100
committerGreg Stein <gstein@apache.org>2000-11-26 05:47:43 +0100
commitead2dae94c0560d822962a93a603b391b465f901 (patch)
treebf7a239c2632c1eb2ce60f1d7b29218aa39bb88d /os/tpf/os.c
parentfix spelling: "writable" is the proper form (diff)
downloadapache2-ead2dae94c0560d822962a93a603b391b465f901.tar.xz
apache2-ead2dae94c0560d822962a93a603b391b465f901.zip
*) Compensate for recent changes in the APR headers. Specifically, some
files need to specifically include stdio.h, or a particular apr_*.h header. *) Adjust callers of apr_create_process() to deal with the extra "const" *) Add "const" to args of ap_os_create_privileged_process() git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@87080 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'os/tpf/os.c')
-rw-r--r--os/tpf/os.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/os/tpf/os.c b/os/tpf/os.c
index cc0633d6d7..f357228ebc 100644
--- a/os/tpf/os.c
+++ b/os/tpf/os.c
@@ -412,10 +412,12 @@ void os_tpf_child(APACHE_TPF_INPUT *input_parms) {
ap_restart_time = input_parms->restart_time;
}
-AP_DECLARE(apr_status_t) ap_os_create_privileged_process(const request_rec *r,
- apr_proc_t *newproc, const char *progname,
- char *const *args, char **env,
- apr_procattr_t *attr, apr_pool_t *p)
+AP_DECLARE(apr_status_t) ap_os_create_privileged_process(
+ const request_rec *r,
+ apr_proc_t *newproc, const char *progname,
+ const char * const *args,
+ const char * const *env,
+ apr_procattr_t *attr, apr_pool_t *p)
{
return apr_create_process(newproc, progname, args, env, attr, p);
}