diff options
author | dreid <dreid@13f79535-47bb-0310-9956-ffa450edef68> | 2000-04-22 16:41:12 +0000 |
---|---|---|
committer | dreid <dreid@13f79535-47bb-0310-9956-ffa450edef68> | 2000-04-22 16:41:12 +0000 |
commit | 5ab50a1c7ddcf801ddbe01f74a0af625efbcbb12 (patch) | |
tree | a76e87e3d3b936d5e3a700f94bd77f372dc21e17 /threadproc | |
parent | fa5023156e90ad6459ec1b137718ebcf06514415 (diff) | |
download | libapr-5ab50a1c7ddcf801ddbe01f74a0af625efbcbb12.tar.gz |
Bring BeOS APR back into a working state.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59928 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'threadproc')
-rw-r--r-- | threadproc/beos/proc.c | 12 |
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; } |