summaryrefslogtreecommitdiff
path: root/include/apr_file_info.h
diff options
context:
space:
mode:
authorJoe Orton <jorton@apache.org>2004-05-17 20:14:49 +0000
committerJoe Orton <jorton@apache.org>2004-05-17 20:14:49 +0000
commit49fc77b9d7c2fe3f7f68a8aea142b720e86deb75 (patch)
treec17c5b8b263d333b9ce49484cd677627695cc8bc /include/apr_file_info.h
parent3e4da273a5136db2acc6323b775e8ddc075cc0c0 (diff)
downloadapr-49fc77b9d7c2fe3f7f68a8aea142b720e86deb75.tar.gz
* include/apr_file_io.h, include/apr_file_info.h: cont->pool
conversions. git-svn-id: https://svn.apache.org/repos/asf/apr/apr/trunk@65099 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'include/apr_file_info.h')
-rw-r--r--include/apr_file_info.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/apr_file_info.h b/include/apr_file_info.h
index 6ec130d79..74e0592bc 100644
--- a/include/apr_file_info.h
+++ b/include/apr_file_info.h
@@ -208,10 +208,10 @@ struct apr_finfo_t {
* never touched if the call fails.
* @param fname The name of the file to stat.
* @param wanted The desired apr_finfo_t fields, as a bit flag of APR_FINFO_ values
- * @param cont the pool to use to allocate the new file.
+ * @param pool the pool to use to allocate the new file.
*/
APR_DECLARE(apr_status_t) apr_stat(apr_finfo_t *finfo, const char *fname,
- apr_int32_t wanted, apr_pool_t *cont);
+ apr_int32_t wanted, apr_pool_t *pool);
/** @} */
/**
@@ -223,11 +223,11 @@ APR_DECLARE(apr_status_t) apr_stat(apr_finfo_t *finfo, const char *fname,
* Open the specified directory.
* @param new_dir The opened directory descriptor.
* @param dirname The full path to the directory (use / on all systems)
- * @param cont The pool to use.
+ * @param pool The pool to use.
*/
APR_DECLARE(apr_status_t) apr_dir_open(apr_dir_t **new_dir,
const char *dirname,
- apr_pool_t *cont);
+ apr_pool_t *pool);
/**
* close the specified directory.