diff options
author | Doug MacEachern <dougm@apache.org> | 2000-04-28 18:27:49 +0000 |
---|---|---|
committer | Doug MacEachern <dougm@apache.org> | 2000-04-28 18:27:49 +0000 |
commit | 7b10913ec391673232ad71bdef8cdb7e34054150 (patch) | |
tree | d5017fa34a4cd51b2b8fc153955b889c245670d6 /file_io/os2/readwrite.c | |
parent | 7c80595141f278a455df18e96ce41f906f7124c3 (diff) | |
download | apr-7b10913ec391673232ad71bdef8cdb7e34054150.tar.gz apr-7b10913ec391673232ad71bdef8cdb7e34054150.zip |
back out APR_ prefix for TRUE,FALSE
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@59983 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/os2/readwrite.c')
-rw-r--r-- | file_io/os2/readwrite.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/file_io/os2/readwrite.c b/file_io/os2/readwrite.c index 19f97feb1..d63ae1813 100644 --- a/file_io/os2/readwrite.c +++ b/file_io/os2/readwrite.c @@ -91,7 +91,7 @@ ap_status_t ap_read(ap_file_t *thefile, void *buf, ap_ssize_t *nbytes) rc = DosRead(thefile->filedes, thefile->buffer, APR_FILE_BUFSIZE, &thefile->dataRead ); if (thefile->dataRead == 0) { if (rc == 0) - thefile->eof_hit = APR_TRUE; + thefile->eof_hit = TRUE; break; } thefile->filePtr += thefile->dataRead; @@ -129,7 +129,7 @@ ap_status_t ap_read(ap_file_t *thefile, void *buf, ap_ssize_t *nbytes) *nbytes = bytesread; if (bytesread == 0) { - thefile->eof_hit = APR_TRUE; + thefile->eof_hit = TRUE; } return APR_SUCCESS; @@ -255,7 +255,7 @@ ap_status_t ap_getc(char *ch, ap_file_t *thefile) } if (bytesread == 0) { - thefile->eof_hit = APR_TRUE; + thefile->eof_hit = TRUE; return APR_EOF; } |