summaryrefslogtreecommitdiff
path: root/src/journal
diff options
context:
space:
mode:
authorLennart Poettering <lennart@poettering.net>2016-10-12 20:20:53 +0200
committerLennart Poettering <lennart@poettering.net>2016-10-12 20:25:20 +0200
commit8da830bca9f3b3fb34b1538dba70455749238fe0 (patch)
treedf664f65338dd9e13ecf9a91feb0fb68b86287f6 /src/journal
parentae739cc1edc7cfa9d1afb4b7087c434aadf61a7a (diff)
journalctl: don't claim the journal was stored on disk
Let's just say that the journal takes up space in the file system, not on disk, as tmpfs is definitely a file system, but not a disk. Fixes: #4059
Diffstat (limited to 'src/journal')
-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 f753435888..7f997487b4 100644
--- a/src/journal/journalctl.c
+++ b/src/journal/journalctl.c
@@ -2266,7 +2266,7 @@ int main(int argc, char *argv[]) {
if (r < 0)
goto finish;
- printf("Archived and active journals take up %s on disk.\n",
+ printf("Archived and active journals take up %s in the file system.\n",
format_bytes(sbytes, sizeof(sbytes), bytes));
goto finish;
}