X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=blobdiff_plain;f=src%2Fmount-setup.c;h=8b4d8c7f4420c0a5de37423ba3e82129b0729845;hb=1afbdcb06b2333c1f5852c049bd5e73b729aa6f0;hp=b6b6a0c94ffe7e1b32e29e6522de8402b9f9141c;hpb=28322e1eb6507f2f40418e2dcdc6ee33e38ecee6;p=elogind.git diff --git a/src/mount-setup.c b/src/mount-setup.c index b6b6a0c94..8b4d8c7f4 100644 --- a/src/mount-setup.c +++ b/src/mount-setup.c @@ -1,4 +1,4 @@ -/*-*- Mode: C; c-basic-offset: 8 -*-*/ +/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/ /*** This file is part of systemd. @@ -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/");