From e0fe3a03ab423711b1e766e3d2980a1927b34d5e Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Fri, 23 Nov 2018 19:40:12 +0100 Subject: remount-fs: use PATH_IN_SET() at one more place --- src/remount-fs/remount-fs.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/remount-fs') diff --git a/src/remount-fs/remount-fs.c b/src/remount-fs/remount-fs.c index af92ddb96c..bfc6ca67a1 100644 --- a/src/remount-fs/remount-fs.c +++ b/src/remount-fs/remount-fs.c @@ -56,8 +56,7 @@ static int run(int argc, char *argv[]) { /* Remount the root fs, /usr and all API VFS */ if (!mount_point_is_api(me->mnt_dir) && - !path_equal(me->mnt_dir, "/") && - !path_equal(me->mnt_dir, "/usr")) + !PATH_IN_SET(me->mnt_dir, "/", "/usr")) continue; log_debug("Remounting %s", me->mnt_dir); -- cgit v1.2.1