diff options
author | Lennart Poettering <lennart@poettering.net> | 2012-08-20 15:59:33 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2012-08-20 15:59:33 +0200 |
commit | f7fab8a5ae7a3b378040203821383f5a8fc91126 (patch) | |
tree | 27cff2a90b66f0e2ff4300c01de981233c8e8598 /src/journal/journalctl.c | |
parent | a2e99cdf94a8a0350ff13b241de07f34c015b1fc (diff) |
journal: fix tag ordering check
Diffstat (limited to 'src/journal/journalctl.c')
-rw-r--r-- | src/journal/journalctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index ba678a289f..e61ddf6d92 100644 --- a/src/journal/journalctl.c +++ b/src/journal/journalctl.c @@ -478,7 +478,7 @@ static int setup_keys(void) { return log_oom(); if (access(p, F_OK) >= 0) { - log_error("Evolving key file %s exists already.", p); + log_error("Sealing key file %s exists already.", p); r = -EEXIST; goto finish; } |