summaryrefslogtreecommitdiff
path: root/include/arch/os2
diff options
context:
space:
mode:
authorstriker <striker@13f79535-47bb-0310-9956-ffa450edef68>2002-03-20 08:54:43 +0000
committerstriker <striker@13f79535-47bb-0310-9956-ffa450edef68>2002-03-20 08:54:43 +0000
commit511d718a6fde86299b6d662cb9a1db790ebbda83 (patch)
tree450c58cbf1f95ac51346a4af9529b5d1dceafb65 /include/arch/os2
parent92997be1ac1dda04a9d67d4e7e9efd96fbfbedbb (diff)
downloadlibapr-511d718a6fde86299b6d662cb9a1db790ebbda83.tar.gz
Rename the "cntxt" members of the fileio structures to "pool".
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@63164 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/arch/os2')
-rw-r--r--include/arch/os2/fileio.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/arch/os2/fileio.h b/include/arch/os2/fileio.h
index 61e54cfba..6ecfea9e7 100644
--- a/include/arch/os2/fileio.h
+++ b/include/arch/os2/fileio.h
@@ -71,7 +71,7 @@
#define APR_FILE_BUFSIZE 4096
struct apr_file_t {
- apr_pool_t *cntxt;
+ apr_pool_t *pool;
HFILE filedes;
char * fname;
int isopen;
@@ -93,7 +93,7 @@ struct apr_file_t {
};
struct apr_dir_t {
- apr_pool_t *cntxt;
+ apr_pool_t *pool;
char *dirname;
ULONG handle;
FILEFINDBUF3 entry;