chiark / gitweb /
manager: properly check for EINTR in main loop
[elogind.git] / mount.c
diff --git a/mount.c b/mount.c
index 15cce6f8e442f64aa604042f5fe128605ae17300..55f11341a6bd03b9f134b2766721fd397a38d1d7 100644 (file)
--- a/mount.c
+++ b/mount.c
@@ -385,7 +385,7 @@ static void mount_set_state(Mount *m, MountState state) {
                 mount_notify_automount(m, -ENODEV);
 
         if (state != old_state)
-                log_debug("%s changed %s  %s",
+                log_debug("%s changed %s -> %s",
                           UNIT(m)->meta.id,
                           mount_state_to_string(old_state),
                           mount_state_to_string(state));
@@ -1462,6 +1462,7 @@ const UnitVTable mount_vtable = {
 
         .no_alias = true,
         .no_instances = true,
+        .no_isolate = true,
 
         .init = mount_init,
         .load = mount_load,