summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilliam A. Rowe Jr <wrowe@apache.org>2017-03-30 19:54:08 +0000
committerWilliam A. Rowe Jr <wrowe@apache.org>2017-03-30 19:54:08 +0000
commit141280e29a8404082ef5b818e4f8a04fa1b28834 (patch)
tree24abd5d99b668dbeed0afb192be1c80d2a79cb5f
parentdc99666447236a9f62f305891951c3524958eec5 (diff)
downloadapr-141280e29a8404082ef5b818e4f8a04fa1b28834.tar.gz
Note initial/current behavior apr_file_copy API
git-svn-id: https://svn.apache.org/repos/asf/apr/apr/branches/1.5.x@1789564 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--include/apr_file_io.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/apr_file_io.h b/include/apr_file_io.h
index eb683afa7..6d08640ad 100644
--- a/include/apr_file_io.h
+++ b/include/apr_file_io.h
@@ -315,6 +315,10 @@ APR_DECLARE(apr_status_t) apr_file_copy(const char *from_path,
* file's permissions are copied.
* @param pool The pool to use.
* @remark The new file does not need to exist, it will be created if required.
+ * @remark Note that advanced filesystem permissions such as ACLs are not
+ * duplicated by this API. The target permissions (including duplicating the
+ * source file permissions) are assigned only when the target file does not yet
+ * exist.
*/
APR_DECLARE(apr_status_t) apr_file_append(const char *from_path,
const char *to_path,