diff options
Diffstat (limited to 'src')
-rw-r--r-- | src/core/mount-setup.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/core/mount-setup.c b/src/core/mount-setup.c index 343ff066a9..71b32d9be7 100644 --- a/src/core/mount-setup.c +++ b/src/core/mount-setup.c @@ -157,6 +157,9 @@ static int mount_one(const MountPoint *p, bool relabel) { label_fix(p->where, true, true); r = path_is_mount_point(p->where, true); + if (r == -ENOENT) + return 0; + if (r < 0) return r; |