diff options
author | Brian Havard <bjh@apache.org> | 2000-01-10 15:35:48 +0000 |
---|---|---|
committer | Brian Havard <bjh@apache.org> | 2000-01-10 15:35:48 +0000 |
commit | 5b314d16e713bc82eff7ac3d02c6a81f8e7975fb (patch) | |
tree | 021e6d03fbb1f8e119db6bed5c843e4a7043a095 /file_io/os2/readwrite.c | |
parent | 5dd911cb6600deecce38bfe76e79cab128f30686 (diff) | |
download | apr-5b314d16e713bc82eff7ac3d02c6a81f8e7975fb.tar.gz apr-5b314d16e713bc82eff7ac3d02c6a81f8e7975fb.zip |
Rework ap_finfo_t to split the file type out of the protection field.
I've taken a stab at the unix implementation but tested only on OS/2.
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59584 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/os2/readwrite.c')
-rw-r--r-- | file_io/os2/readwrite.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/file_io/os2/readwrite.c b/file_io/os2/readwrite.c index 86c27d50e..fa4fdb949 100644 --- a/file_io/os2/readwrite.c +++ b/file_io/os2/readwrite.c @@ -175,7 +175,6 @@ ap_status_t ap_write(struct file_t *thefile, void *buf, ap_ssize_t *nbytes) } *nbytes = byteswritten; - thefile->validstatus = FALSE; return APR_SUCCESS; } } @@ -206,7 +205,6 @@ ap_status_t ap_writev(struct file_t *thefile, const struct iovec_t *vec, ap_ssiz } else { *iocnt = bytes; - thefile->validstatus = FALSE; return APR_SUCCESS; } } @@ -229,7 +227,6 @@ ap_status_t ap_putc(char ch, ap_file_t *thefile) return os2errno(rc); } - thefile->validstatus = FALSE; return APR_SUCCESS; } |