summaryrefslogtreecommitdiff
path: root/file_io/unix/fileacc.c
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 /file_io/unix/fileacc.c
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 'file_io/unix/fileacc.c')
-rw-r--r--file_io/unix/fileacc.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/file_io/unix/fileacc.c b/file_io/unix/fileacc.c
index 6b5d4677a..8b50488bf 100644
--- a/file_io/unix/fileacc.c
+++ b/file_io/unix/fileacc.c
@@ -130,12 +130,12 @@ apr_fileperms_t apr_unix_mode2perms(mode_t mode)
APR_DECLARE(apr_status_t) apr_file_data_get(void **data, const char *key,
apr_file_t *file)
{
- return apr_pool_userdata_get(data, key, file->cntxt);
+ return apr_pool_userdata_get(data, key, file->pool);
}
APR_DECLARE(apr_status_t) apr_file_data_set(apr_file_t *file, void *data,
const char *key,
apr_status_t (*cleanup)(void *))
{
- return apr_pool_userdata_set(data, key, cleanup, file->cntxt);
+ return apr_pool_userdata_set(data, key, cleanup, file->pool);
}