From: Lennart Poettering Date: Wed, 12 Oct 2016 18:20:53 +0000 (+0200) Subject: journalctl: don't claim the journal was stored on disk X-Git-Tag: v234~968^2~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=8da830bca9f3b3fb34b1538dba70455749238fe0;p=platform%2Fupstream%2Fsystemd.git 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 --- diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index f753435..7f99748 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; }