diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-05-22 19:23:33 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-05-22 19:25:17 +0200 |
commit | 6b1dc2bd3cdb3bd932b0692be636ddd2879edb92 (patch) | |
tree | 2103f7daf0619c14f8da9be956f4ddbbe9309d51 /src/core/dbus-mount.c | |
parent | 745e2fb79ab20f3e98310d5e889a161ffe8b492c (diff) |
mount: replace PID1 internal fstab parser with generator
Bit by bit we should remove non-unit parsing from PID 1 and move into
generators, to clean up our code base a bit and clearly separate
parsers.
Diffstat (limited to 'src/core/dbus-mount.c')
-rw-r--r-- | src/core/dbus-mount.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/core/dbus-mount.c b/src/core/dbus-mount.c index f6db4682af..26b04abe5d 100644 --- a/src/core/dbus-mount.c +++ b/src/core/dbus-mount.c @@ -80,8 +80,6 @@ static int bus_mount_append_what(DBusMessageIter *i, const char *property, void d = m->parameters_proc_self_mountinfo.what; else if (m->from_fragment && m->parameters_fragment.what) d = m->parameters_fragment.what; - else if (m->from_etc_fstab && m->parameters_etc_fstab.what) - d = m->parameters_etc_fstab.what; else d = ""; @@ -103,8 +101,6 @@ static int bus_mount_append_options(DBusMessageIter *i, const char *property, vo d = m->parameters_proc_self_mountinfo.options; else if (m->from_fragment && m->parameters_fragment.options) d = m->parameters_fragment.options; - else if (m->from_etc_fstab && m->parameters_etc_fstab.options) - d = m->parameters_etc_fstab.options; else d = ""; @@ -126,8 +122,6 @@ static int bus_mount_append_type(DBusMessageIter *i, const char *property, void d = m->parameters_proc_self_mountinfo.fstype; else if (m->from_fragment && m->parameters_fragment.fstype) d = m->parameters_fragment.fstype; - else if (m->from_etc_fstab && m->parameters_etc_fstab.fstype) - d = m->parameters_etc_fstab.fstype; else d = ""; |