diff options
author | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-10-31 13:02:10 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2017-11-30 20:43:25 +0100 |
commit | a66fee2e970bd3e6ac35db2dd6e377c83093b10e (patch) | |
tree | b3792082a10c993579f92ec1eec097e0c0aaf7fa /src/basic/stat-util.c | |
parent | b12d25a8d631af00b200e7aa9dbba6ba4a4a59ff (diff) | |
download | systemd-a66fee2e970bd3e6ac35db2dd6e377c83093b10e.tar.gz |
util-lib: rename fd_check_fstype to fd_is_fs_type
Let's use "is" and "fs_type" for consistency with "is_fs_type".
"check" is also more ambiguous than "is".
Diffstat (limited to 'src/basic/stat-util.c')
-rw-r--r-- | src/basic/stat-util.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/basic/stat-util.c b/src/basic/stat-util.c index ea554f7b73..483c3363af 100644 --- a/src/basic/stat-util.c +++ b/src/basic/stat-util.c @@ -193,7 +193,7 @@ bool is_fs_type(const struct statfs *s, statfs_f_type_t magic_value) { return F_TYPE_EQUAL(s->f_type, magic_value); } -int fd_check_fstype(int fd, statfs_f_type_t magic_value) { +int fd_is_fs_type(int fd, statfs_f_type_t magic_value) { struct statfs s; if (fstatfs(fd, &s) < 0) @@ -209,7 +209,7 @@ int path_check_fstype(const char *path, statfs_f_type_t magic_value) { if (fd < 0) return -errno; - return fd_check_fstype(fd, magic_value); + return fd_is_fs_type(fd, magic_value); } bool is_temporary_fs(const struct statfs *s) { |