summaryrefslogtreecommitdiff
path: root/file_io
diff options
context:
space:
mode:
authorbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2002-06-03 18:52:46 +0000
committerbnicholes <bnicholes@13f79535-47bb-0310-9956-ffa450edef68>2002-06-03 18:52:46 +0000
commitcab48db5ef5bcd6cb2a25cd0574f113ff3ba8056 (patch)
tree7ae46f672e852b2d821841627a137faab5b14c73 /file_io
parent0c13352488752674358fef333bc8751090f73039 (diff)
downloadlibapr-cab48db5ef5bcd6cb2a25cd0574f113ff3ba8056.tar.gz
Updated to match the header change
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63458 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io')
-rw-r--r--file_io/netware/pipe.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/file_io/netware/pipe.c b/file_io/netware/pipe.c
index dc1b62457..47c864894 100644
--- a/file_io/netware/pipe.c
+++ b/file_io/netware/pipe.c
@@ -108,7 +108,7 @@ static apr_status_t pipenonblock(apr_file_t *thepipe)
APR_DECLARE(apr_status_t) apr_file_pipe_timeout_set(apr_file_t *thepipe, apr_interval_time_t timeout)
{
- if (thepipe->pipe == 1) {
+ if (thepipe->is_pipe == 1) {
thepipe->timeout = timeout;
if (timeout >= 0) {
if (thepipe->blocking != BLK_OFF) { /* blocking or unknown state */
@@ -127,7 +127,7 @@ APR_DECLARE(apr_status_t) apr_file_pipe_timeout_set(apr_file_t *thepipe, apr_int
APR_DECLARE(apr_status_t) apr_file_pipe_timeout_get(apr_file_t *thepipe, apr_interval_time_t *timeout)
{
- if (thepipe->pipe == 1) {
+ if (thepipe->is_pipe == 1) {
*timeout = thepipe->timeout;
return APR_SUCCESS;
}
@@ -150,8 +150,8 @@ APR_DECLARE(apr_status_t) apr_file_pipe_create(apr_file_t **in, apr_file_t **out
(*out)->pool = pool;
(*in)->filedes = filedes[0];
(*out)->filedes = filedes[1];
- (*in)->pipe =
- (*out)->pipe = 1;
+ (*in)->is_pipe =
+ (*out)->is_pipe = 1;
(*out)->fname =
(*in)->fname = NULL;
(*in)->buffered =