diff options
author | Barron Rulon <barron@lexmark.com> | 2016-08-27 10:42:05 -0400 |
---|---|---|
committer | Barron Rulon <barron@lexmark.com> | 2016-08-27 10:47:46 -0400 |
commit | 49915de2451a2ddbd2449a825c682b9731432895 (patch) | |
tree | 2315db04bbdbc9d603a6f4cc8f93c86b7c01e553 /src/core/mount.c | |
parent | 4f8d40a9dc3d2dc754a30bc9455817ee6a857c62 (diff) |
mount: add SloppyOptions= to mount_dump()
Diffstat (limited to 'src/core/mount.c')
-rw-r--r-- | src/core/mount.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/core/mount.c b/src/core/mount.c index 6c794d4073..04025b83b9 100644 --- a/src/core/mount.c +++ b/src/core/mount.c @@ -678,6 +678,7 @@ static void mount_dump(Unit *u, FILE *f, const char *prefix) { "%sFrom /proc/self/mountinfo: %s\n" "%sFrom fragment: %s\n" "%sDirectoryMode: %04o\n" + "%sSloppyOptions: %s\n" "%sLazyUnmount: %s\n" "%sForceUnmount: %s\n", prefix, mount_state_to_string(m->state), @@ -689,6 +690,7 @@ static void mount_dump(Unit *u, FILE *f, const char *prefix) { prefix, yes_no(m->from_proc_self_mountinfo), prefix, yes_no(m->from_fragment), prefix, m->directory_mode, + prefix, yes_no(m->sloppy_options), prefix, yes_no(m->lazy_unmount), prefix, yes_no(m->force_unmount)); |