From: Michal Sekletar Date: Fri, 8 Mar 2013 14:13:43 +0000 (+0100) Subject: core: fix getting information about mount unit X-Git-Tag: v199~225 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=4d4fe926cb2ad1e624ddaea26f143fa93d867296;p=elogind.git core: fix getting information about mount unit We should not try to get information about mount unit from fragment if the unit was created because of /proc/self/mountinfo event. --- diff --git a/src/core/mount.c b/src/core/mount.c index 419cf27a8..895aa2537 100644 --- a/src/core/mount.c +++ b/src/core/mount.c @@ -447,7 +447,8 @@ static int mount_add_default_dependencies(Mount *m) { if (UNIT(m)->manager->running_as != SYSTEMD_SYSTEM) return 0; - p = get_mount_parameters_fragment(m); + p = get_mount_parameters(m); + if (!p) return 0;