From: Lennart Poettering Date: Thu, 24 Sep 2020 13:07:52 +0000 (+0200) Subject: mount-util: show mount source in mount_verbose_full() debug output X-Git-Tag: v247-rc1~170 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=3b493d94ae78efcab4caa3678ed160a05cb2d527;p=thirdparty%2Fsystemd.git mount-util: show mount source in mount_verbose_full() debug output --- diff --git a/src/shared/mount-util.c b/src/shared/mount-util.c index e0a03156398..83ce749d127 100644 --- a/src/shared/mount-util.c +++ b/src/shared/mount-util.c @@ -644,8 +644,8 @@ int mount_verbose_full( log_debug("Moving mount %s → %s (%s \"%s\")...", what, where, strnull(fl), strempty(o)); else - log_debug("Mounting %s on %s (%s \"%s\")...", - strna(type), where, strnull(fl), strempty(o)); + log_debug("Mounting %s (%s) on %s (%s \"%s\")...", + strna(what), strna(type), where, strnull(fl), strempty(o)); if (follow_symlink) r = mount(what, where, type, f, o) < 0 ? -errno : 0;