diff options
author | Evgeny Vereshchagin <evvers@ya.ru> | 2016-04-29 11:38:35 +0300 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-04-29 10:38:35 +0200 |
commit | e192a2815ef92ba8b2d6855be6cef0cbf3712272 (patch) | |
tree | 5b29e1e08003d0e6a47f2678887910da4b6ee17a /src/nspawn | |
parent | 6fc2549711493b3374a56c3025291df16e455e25 (diff) |
nspawn: convert uuid to string (#3146)
Fixes:
cp /etc/machine-id /var/tmp/systemd-test.HccKPa/nspawn-root/etc
systemd-nspawn -D /var/tmp/systemd-test.HccKPa/nspawn-root --link-journal host -b
...
Host and machine ids are equal (P�S!V): refusing to link journals
Diffstat (limited to 'src/nspawn')
-rw-r--r-- | src/nspawn/nspawn.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 8c90aa8015..3fc6cc955c 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -1464,7 +1464,7 @@ static int setup_journal(const char *directory) { if (sd_id128_equal(arg_uuid, this_id)) { log_full(try ? LOG_WARNING : LOG_ERR, - "Host and machine ids are equal (%s): refusing to link journals", id); + "Host and machine ids are equal (%s): refusing to link journals", sd_id128_to_string(arg_uuid, id)); if (try) return 0; return -EEXIST; |