diff options
author | bjh <bjh@13f79535-47bb-0310-9956-ffa450edef68> | 2000-04-28 06:21:50 +0000 |
---|---|---|
committer | bjh <bjh@13f79535-47bb-0310-9956-ffa450edef68> | 2000-04-28 06:21:50 +0000 |
commit | d5d090d0a7929c7109781e336224019867db4fc3 (patch) | |
tree | e4365cd81f13d3fe9564e853755a15e674b53780 /file_io/os2/pipe.c | |
parent | 8f817270d94d510b43f416184f78ebb96d6f1f0a (diff) | |
download | libapr-d5d090d0a7929c7109781e336224019867db4fc3.tar.gz |
OS/2: We don't currently have an ungetchar in OS/2's ap_file_t as
ap_ungetc() is fudged with a -1 seek.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59973 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/os2/pipe.c')
-rw-r--r-- | file_io/os2/pipe.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/file_io/os2/pipe.c b/file_io/os2/pipe.c index d81f66d08..4ec94a889 100644 --- a/file_io/os2/pipe.c +++ b/file_io/os2/pipe.c @@ -116,7 +116,6 @@ ap_status_t ap_create_pipe(ap_file_t **in, ap_file_t **out, ap_pool_t *cont) (*in)->flags = 0; (*in)->pipe = 1; (*in)->timeout = -1; - (*in)->ungetchar = -1; ap_register_cleanup(cont, *in, apr_file_cleanup, ap_null_cleanup); (*out) = (ap_file_t *)ap_palloc(cont, sizeof(ap_file_t)); |