summaryrefslogtreecommitdiff
path: root/file_io/os2
diff options
context:
space:
mode:
authorRuediger Pluem <rpluem@apache.org>2007-10-14 13:34:42 +0000
committerRuediger Pluem <rpluem@apache.org>2007-10-14 13:34:42 +0000
commit23f7a9a8886d150d4d42ef0392156cbe6582f7c2 (patch)
treeafbe1e2b008ea80f7d66d3838789ea1b02f7df95 /file_io/os2
parentd369af27eb30743b72c3239ca4f191190fa021d2 (diff)
downloadapr-23f7a9a8886d150d4d42ef0392156cbe6582f7c2.tar.gz
* Return APR_SUCCESS by default.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@584543 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/os2')
-rw-r--r--file_io/os2/pipe.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/file_io/os2/pipe.c b/file_io/os2/pipe.c
index 5859c1d7d..211c43cde 100644
--- a/file_io/os2/pipe.c
+++ b/file_io/os2/pipe.c
@@ -127,6 +127,8 @@ APR_DECLARE(apr_status_t) apr_file_pipe_create_ex(apr_file_t **in,
apr_file_pipe_timeout_set(*out, 0);
apr_file_pipe_timeout_set(*in, 0);
}
+
+ return APR_SUCCESS;
}