summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2004-09-22 18:59:07 +0000
committerjorton <jorton@13f79535-47bb-0310-9956-ffa450edef68>2004-09-22 18:59:07 +0000
commit58e6feed719e4eb0185da894d7be9478d429dd32 (patch)
tree9b26161bb6c7730e30f46f20c366a64b25aeac53
parent0606391b23b59ef01726ec03c8402b7286c4e0eb (diff)
downloadlibapr-58e6feed719e4eb0185da894d7be9478d429dd32.tar.gz
Comment tweak as per HEAD.
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/branches/APR_0_9_BRANCH@65341 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/apr_file_io.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/apr_file_io.h b/include/apr_file_io.h
index 19ffdf995..ac80db62d 100644
--- a/include/apr_file_io.h
+++ b/include/apr_file_io.h
@@ -145,7 +145,7 @@ typedef struct apr_file_t apr_file_t;
/**
* Open the specified file.
- * @param new_file The opened file descriptor.
+ * @param newf The opened file descriptor.
* @param fname The full path to the file (using / on all systems)
* @param flag Or'ed value of:
* <PRE>
@@ -173,14 +173,14 @@ typedef struct apr_file_t apr_file_t;
* apr_sendfile does not check this flag.
* </PRE>
* @param perm Access permissions for file.
- * @param cont The pool to use.
+ * @param pool The pool to use.
* @remark If perm is APR_OS_DEFAULT and the file is being created, appropriate
* default permissions will be used. *arg1 must point to a valid file_t,
* or NULL (in which case it will be allocated)
*/
-APR_DECLARE(apr_status_t) apr_file_open(apr_file_t **new_file, const char *fname,
+APR_DECLARE(apr_status_t) apr_file_open(apr_file_t **newf, const char *fname,
apr_int32_t flag, apr_fileperms_t perm,
- apr_pool_t *cont);
+ apr_pool_t *pool);
/**
* Close the specified file.