diff options
author | Lennart Poettering <lennart@poettering.net> | 2015-04-08 20:47:35 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2015-04-08 20:47:35 +0200 |
commit | 1ed8f8c16da99551c6731764759878a0bc243fde (patch) | |
tree | e374c9701d1f6217e77b056b52401c02d59755eb /src/shared/util.h | |
parent | 171181bcd64d5a128f6678107d18ffa1c9388b94 (diff) |
util: merge change_attr_fd() and chattr_fd()
Diffstat (limited to 'src/shared/util.h')
-rw-r--r-- | src/shared/util.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/shared/util.h b/src/shared/util.h index e7a5d6366e..b41090bf70 100644 --- a/src/shared/util.h +++ b/src/shared/util.h @@ -1058,9 +1058,8 @@ int fd_getcrtime_at(int dirfd, const char *name, usec_t *usec, int flags); int same_fd(int a, int b); -int chattr_fd(int fd, bool b, unsigned mask); -int chattr_path(const char *p, bool b, unsigned mask); -int change_attr_fd(int fd, unsigned value, unsigned mask); +int chattr_fd(int fd, unsigned value, unsigned mask); +int chattr_path(const char *p, unsigned value, unsigned mask); int read_attr_fd(int fd, unsigned *ret); int read_attr_path(const char *p, unsigned *ret); |