1
0
mirror of https://github.com/systemd/systemd.git synced 2024-10-27 18:55:40 +03:00

mount-util: show mount source in mount_verbose_full() debug output

This commit is contained in:
Lennart Poettering 2020-09-24 15:07:52 +02:00
parent e25a0a69be
commit 3b493d94ae

View File

@ -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;