chiark / gitweb /
remount: add tool that applies /etc/fstab mount options to all api mounts
[elogind.git] / src / mount-setup.c
index ecd9e181c5efe94961da3c56c3427e4b5f3caf34..8b4d8c7f4420c0a5de37423ba3e82129b0729845 100644 (file)
@@ -68,11 +68,11 @@ bool mount_point_is_api(const char *path) {
          * should be ignored */
 
         for (i = 0; i < ELEMENTSOF(mount_table); i ++)
-                if (path_startswith(path, mount_table[i].where))
+                if (path_equal(path, mount_table[i].where))
                         return true;
 
         for (i = 0; i < ELEMENTSOF(ignore_paths); i++)
-                if (path_startswith(path, ignore_paths[i]))
+                if (path_equal(path, ignore_paths[i]))
                         return true;
 
         return path_startswith(path, "/cgroup/");