summaryrefslogtreecommitdiff
path: root/src/journal/journalctl.c
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2012-08-20 15:59:33 +0200
committerLennart Poettering <lennart@poettering.net>2012-08-20 15:59:33 +0200
commitf7fab8a5ae7a3b378040203821383f5a8fc91126 (patch)
tree27cff2a90b66f0e2ff4300c01de981233c8e8598 /src/journal/journalctl.c
parenta2e99cdf94a8a0350ff13b241de07f34c015b1fc (diff)
journal: fix tag ordering check
Diffstat (limited to 'src/journal/journalctl.c')
-rw-r--r--src/journal/journalctl.c2
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;
}