summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2017-03-30 19:54:08 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2017-03-30 19:54:08 +0000
commitfc9e0896e8c6cee347036471229fd6322370f4bb (patch)
tree24abd5d99b668dbeed0afb192be1c80d2a79cb5f
parentc47b4e33593292e48addccbc0371e5e124cb8156 (diff)
downloadlibapr-fc9e0896e8c6cee347036471229fd6322370f4bb.tar.gz
Note initial/current behavior apr_file_copy API
git-svn-id: http://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,