summaryrefslogtreecommitdiff
path: root/src/basic/stat-util.c
diff options
context:
space:
mode:
authorSven Eden <yamakuzure@gmx.net>2017-11-19 18:48:14 +0100
committerSven Eden <yamakuzure@gmx.net>2017-11-19 18:48:56 +0100
commite1e4981281ad1b819ebaa55f589c771130d35301 (patch)
treeb34d417ef77ae46f50e11fc33856453bf289baab /src/basic/stat-util.c
parent3b35a18b69bfe77c5e61ecaf0d5c6c3a64ad97dc (diff)
v235: Added missing updates
Diffstat (limited to 'src/basic/stat-util.c')
-rw-r--r--src/basic/stat-util.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/basic/stat-util.c b/src/basic/stat-util.c
index 0280afeec..064f0b477 100644
--- a/src/basic/stat-util.c
+++ b/src/basic/stat-util.c
@@ -199,7 +199,6 @@ bool is_fs_type(const struct statfs *s, statfs_f_type_t magic_value) {
return F_TYPE_EQUAL(s->f_type, magic_value);
}
-#if 0 /// UNNEEDED by elogind
int fd_check_fstype(int fd, statfs_f_type_t magic_value) {
struct statfs s;
@@ -209,6 +208,7 @@ int fd_check_fstype(int fd, statfs_f_type_t magic_value) {
return is_fs_type(&s, magic_value);
}
+#if 0 /// UNNEEDED by elogind
int path_check_fstype(const char *path, statfs_f_type_t magic_value) {
_cleanup_close_ int fd = -1;