summaryrefslogtreecommitdiff
path: root/threadproc/beos
diff options
context:
space:
mode:
authorDavid Reid <dreid@apache.org>2000-04-22 16:41:12 +0000
committerDavid Reid <dreid@apache.org>2000-04-22 16:41:12 +0000
commit7442d0f1ea88170a3bf03d3085126a7f3fa2fc9d (patch)
treea76e87e3d3b936d5e3a700f94bd77f372dc21e17 /threadproc/beos
parent19682873dffdd65202567bdac164d3d125da6000 (diff)
downloadapr-7442d0f1ea88170a3bf03d3085126a7f3fa2fc9d.tar.gz
Bring BeOS APR back into a working state.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59928 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc/beos')
-rw-r--r--threadproc/beos/proc.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/threadproc/beos/proc.c b/threadproc/beos/proc.c
index 5e6b5ff78..adeb0db96 100644
--- a/threadproc/beos/proc.c
+++ b/threadproc/beos/proc.c
@@ -320,10 +320,10 @@ ap_status_t ap_setprocattr_childin(ap_procattr_t *attr, ap_file_t *child_in,
ap_create_pipe(&attr->child_in, &attr->parent_in, attr->cntxt);
if (child_in != NULL)
- ap_dupfile(&attr->child_in, child_in);
+ ap_dupfile(&attr->child_in, child_in, attr->cntxt);
if (parent_in != NULL)
- ap_dupfile(&attr->parent_in, parent_in);
+ ap_dupfile(&attr->parent_in, parent_in, attr->cntxt);
return APR_SUCCESS;
}
@@ -335,10 +335,10 @@ ap_status_t ap_setprocattr_childout(ap_procattr_t *attr, ap_file_t *child_out,
ap_create_pipe(&attr->child_out, &attr->parent_out, attr->cntxt);
if (child_out != NULL)
- ap_dupfile(&attr->child_out, child_out);
+ ap_dupfile(&attr->child_out, child_out, attr->cntxt);
if (parent_out != NULL)
- ap_dupfile(&attr->parent_out, parent_out);
+ ap_dupfile(&attr->parent_out, parent_out, attr->cntxt);
return APR_SUCCESS;
}
@@ -350,10 +350,10 @@ ap_status_t ap_setprocattr_childerr(ap_procattr_t *attr, ap_file_t *child_err,
ap_create_pipe(&attr->child_err, &attr->parent_err, attr->cntxt);
if (child_err != NULL)
- ap_dupfile(&attr->child_err, child_err);
+ ap_dupfile(&attr->child_err, child_err, attr->cntxt);
if (parent_err != NULL)
- ap_dupfile(&attr->parent_err, parent_err);
+ ap_dupfile(&attr->parent_err, parent_err, attr->cntxt);
return APR_SUCCESS;
}