summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2017-03-30 19:50:55 +0000
committerwrowe <wrowe@13f79535-47bb-0310-9956-ffa450edef68>2017-03-30 19:50:55 +0000
commitaf8dbab56c24cab7cd1814e1c3ba4a9bd3b5f455 (patch)
tree3ce53f6ca404c294ef4edf8009ce43d1ffc35dfc
parente77dca0a2b6e3e829ac8e188179563e8ea461d78 (diff)
downloadlibapr-af8dbab56c24cab7cd1814e1c3ba4a9bd3b5f455.tar.gz
Note initial/current behavior apr_file_copy API
git-svn-id: http://svn.apache.org/repos/asf/apr/apr/trunk@1789560 13f79535-47bb-0310-9956-ffa450edef68
-rw-r--r--Makefile.in6
-rw-r--r--include/apr_file_io.h4
2 files changed, 10 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index c3c203bcf..7c687e3ff 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -151,6 +151,12 @@ apr.exp: exports.c export_vars.c
dox:
doxygen $(top_srcdir)/docs/doxygen.conf
+dox-vpath:
+ -mkdir docs 2> /dev/null
+ sed -e "s#\(INPUT=\.\)#\1 $(top_srcdir)#;" \
+ < $(top_srcdir)/docs/doxygen.conf > docs/doxygen.conf
+ doxygen docs/doxygen.conf
+
gcov:
@build/run-gcov.sh
diff --git a/include/apr_file_io.h b/include/apr_file_io.h
index 59a502d76..4611b1a15 100644
--- a/include/apr_file_io.h
+++ b/include/apr_file_io.h
@@ -324,6 +324,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,