diff options
author | Mirco Tischler <mt-ml@gmx.de> | 2013-01-17 18:55:06 +0100 |
---|---|---|
committer | Zbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl> | 2013-01-18 11:14:00 -0500 |
commit | bbc9006e6b5665073149331d75c104a33224dc19 (patch) | |
tree | 116572d108aaa170449fa8eb9617980e77a238b6 /src/core/mount.c | |
parent | ef1673d16907726d83bdff2e57b5261997a85020 (diff) |
core: log USER_UNIT instead of UNIT if in user session
Diffstat (limited to 'src/core/mount.c')
-rw-r--r-- | src/core/mount.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/mount.c b/src/core/mount.c index 25bc7e197a..18ce73b438 100644 --- a/src/core/mount.c +++ b/src/core/mount.c @@ -955,11 +955,11 @@ fail: void warn_if_dir_nonempty(const char *unit, const char* where) { if (dir_is_empty(where) > 0) return; - log_struct(LOG_NOTICE, + log_struct_unit(LOG_NOTICE, + unit, "MESSAGE=%s: Directory %s to mount over is not empty, mounting anyway.", unit, where, "WHERE=%s", where, - "_SYSTEMD_UNIT=%s", unit, MESSAGE_ID(SD_MESSAGE_OVERMOUNTING), NULL); } |