diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-01-14 02:04:17 +0100 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-01-14 23:18:33 +0100 |
commit | 45030287af1e8e76b0feb1cfc3011a0ef2b37d0d (patch) | |
tree | 6bec1c78392af4fbe9519064a52db5c182ccc4fb /src/shared/copy.h | |
parent | 679bc6cb9016715339aac4ae6b2d5371c6262935 (diff) |
util: the chattr flags field is actually unsigned, judging by kernel sources
Unlike some client code suggests...
Diffstat (limited to 'src/shared/copy.h')
-rw-r--r-- | src/shared/copy.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/shared/copy.h b/src/shared/copy.h index e4e3079120..8de0cfba32 100644 --- a/src/shared/copy.h +++ b/src/shared/copy.h @@ -25,8 +25,8 @@ #include <sys/types.h> int copy_file_fd(const char *from, int to, bool try_reflink); -int copy_file(const char *from, const char *to, int flags, mode_t mode, int chattr_flags); -int copy_file_atomic(const char *from, const char *to, mode_t mode, bool replace, int chattr_flags); +int copy_file(const char *from, const char *to, int flags, mode_t mode, unsigned chattr_flags); +int copy_file_atomic(const char *from, const char *to, mode_t mode, bool replace, unsigned chattr_flags); int copy_tree(const char *from, const char *to, bool merge); int copy_tree_at(int fdf, const char *from, int fdt, const char *to, bool merge); int copy_directory_fd(int dirfd, const char *to, bool merge); |