mirror of
https://github.com/systemd/systemd.git
synced 2025-01-10 05:18:17 +03:00
journald-server: r should be checked after journal_file_open_reliably
This commit is contained in:
parent
47a1454f70
commit
433dd10044
@ -910,11 +910,12 @@ static int system_journal_open(Server *s) {
|
||||
|
||||
if (r >= 0)
|
||||
server_fix_perms(s, s->system_journal, 0);
|
||||
} else if (r < 0) {
|
||||
if (r != -ENOENT && r != -EROFS)
|
||||
log_warning("Failed to open system journal: %s", strerror(-r));
|
||||
else if (r < 0) {
|
||||
if (r != -ENOENT && r != -EROFS)
|
||||
log_warning("Failed to open system journal: %s", strerror(-r));
|
||||
|
||||
r = 0;
|
||||
r = 0;
|
||||
}
|
||||
}
|
||||
|
||||
if (!s->runtime_journal &&
|
||||
|
Loading…
Reference in New Issue
Block a user