bjh 99/10/13 19:51:48
Modified: src/lib/apr/threadproc/os2 proc.c
Log:
OS/2: Add some 'const's to match prototypes.
Revision Changes Path
1.6 +2 -3 apache-2.0/src/lib/apr/threadproc/os2/proc.c
Index: proc.c
===================================================================
RCS file: /home/cvs/apache-2.0/src/lib/apr/threadproc/os2/proc.c,v
retrieving revision 1.5
retrieving revision 1.6
diff -u -r1.5 -r1.6
--- proc.c 1999/10/11 17:52:12 1.5
+++ proc.c 1999/10/14 02:51:47 1.6
@@ -115,8 +115,7 @@
return APR_SUCCESS;
}
-ap_status_t ap_setprocattr_dir(struct procattr_t *attr,
- char *dir)
+ap_status_t ap_setprocattr_dir(struct procattr_t *attr, const char *dir)
{
attr->currdir = ap_pstrdup(attr->cntxt, dir);
if (attr->currdir) {
@@ -159,7 +158,7 @@
return APR_INPARENT;
}
-ap_status_t ap_create_process(struct proc_t **new, char *progname,
+ap_status_t ap_create_process(struct proc_t **new, const char *progname,
char *const args[], char **env,
struct procattr_t *attr, ap_context_t *cont)
{