summaryrefslogtreecommitdiff
path: root/file_io/win32
diff options
context:
space:
mode:
authorrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-10-04 17:24:35 +0000
committerrbb <rbb@13f79535-47bb-0310-9956-ffa450edef68>1999-10-04 17:24:35 +0000
commit8f8b1fc200182743a0f0f9007e3932b28072b241 (patch)
tree3febf15d448b4ab7111d14ec9c94bd0e8a4f607c /file_io/win32
parent636a5b651386b67ebf0319d23ffb6a644733c3a6 (diff)
downloadlibapr-8f8b1fc200182743a0f0f9007e3932b28072b241.tar.gz
Simple name change. the function ap_gets has been renamed to ap_fgets.
This is more in-line with what the function does, and how it acts, so it makes sense. git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@59260 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'file_io/win32')
-rw-r--r--file_io/win32/readwrite.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/file_io/win32/readwrite.c b/file_io/win32/readwrite.c
index 89a768519..46451c2ad 100644
--- a/file_io/win32/readwrite.c
+++ b/file_io/win32/readwrite.c
@@ -201,7 +201,7 @@ ap_status_t ap_puts(ap_file_t *thefile, char *str)
return APR_SUCCESS;
}
-ap_status_t ap_gets(ap_file_t *thefile, char *str, int len)
+ap_status_t ap_fgets(ap_file_t *thefile, char *str, int len)
{
DWORD bread;
int i;