]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
journalctl: don't claim the journal was stored on disk
authorLennart Poettering <lennart@poettering.net>
Wed, 12 Oct 2016 18:20:53 +0000 (20:20 +0200)
committerLennart Poettering <lennart@poettering.net>
Wed, 12 Oct 2016 18:25:20 +0000 (20:25 +0200)
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
src/journal/journalctl.c

index f753435888d05ee644c9f1c5d81d5f5ce640f166..7f997487b4b07b6b5ce5da2556637ac2058bad30 100644 (file)
@@ -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;
         }