]> gitweb.michael.orlitzky.com - apply-default-acl.git/commitdiff
Add missing "flags" parameter documentation to the safe_open() functions.
authorMichael Orlitzky <michael@orlitzky.com>
Mon, 26 Feb 2018 18:56:36 +0000 (13:56 -0500)
committerMichael Orlitzky <michael@orlitzky.com>
Mon, 26 Feb 2018 19:10:29 +0000 (14:10 -0500)
src/libadacl.c

index 8e36230c0c09ace1eb85868ecdecc4155cd457ec..d4e99aa2e48106ab51c806afc719f7890d2240c9 100644 (file)
@@ -46,6 +46,9 @@
  * @param pathname
  *   The path to the file/directory/whatever whose descriptor you want.
  *
+ * @param flags
+ *   File status flags to be passed to @c openat.
+ *
  * @return a file descriptor for @c pathname if everything goes well,
  *   and @c OPEN_ERROR if not.
  */
@@ -106,6 +109,9 @@ int safe_open_ex(int at_fd, char* pathname, int flags) {
  * @param pathname
  *   The path to the file/directory/whatever whose descriptor you want.
  *
+ * @param flags
+ *   File status flags to be passed to @c openat.
+ *
  * @return a file descriptor for @c pathname if everything goes well,
  *   and @c OPEN_ERROR if not.
  */