1
0
mirror of https://github.com/systemd/systemd synced 2025-10-05 11:44:45 +02:00

Compare commits

..

2 Commits

Author SHA1 Message Date
Antonio Terceiro
17e9000164 logs-show: add missing newline in warning message 2021-03-21 17:52:07 +00:00
Yu Watanabe
fcc3c20ca3 meson: fix build error of test-dnssec-complex
Fixes #19065.
2021-03-21 13:18:44 +01:00
2 changed files with 8 additions and 4 deletions

View File

@ -210,9 +210,13 @@ tests += [
libgpg_error,
libm]],
[['src/resolve/test-dnssec-complex.c',
'src/resolve/dns-type.c'],
[], [], resolve_includes, '', 'manual'],
[['src/resolve/test-dnssec-complex.c'],
[libsystemd_resolve_core,
libshared],
[libgcrypt,
libgpg_error,
libm],
[], '', 'manual'],
]
fuzzers += [

View File

@ -1396,7 +1396,7 @@ int show_journal(
bool noaccess = journal_access_blocked(j);
if (line == 0 && noaccess)
fprintf(f, "Warning: some journal files were not opened due to insufficient permissions.");
fprintf(f, "Warning: some journal files were not opened due to insufficient permissions.\n");
else if (!noaccess)
fprintf(f, "Notice: journal has been rotated since unit was started, output may be incomplete.\n");
else