From: Zbigniew Jędrzejewski-Szmek Date: Mon, 25 Mar 2013 00:16:00 +0000 (-0400) Subject: journalctl: reword error message X-Git-Tag: v201~114 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=fb93cf737549f2d5fce6cb76b1d5e8382c7537b8 journalctl: reword error message Sentence seemed to suggest that all three conditions must be true. --- diff --git a/src/journal/journalctl.c b/src/journal/journalctl.c index c96d68dd4..8661e5e33 100644 --- a/src/journal/journalctl.c +++ b/src/journal/journalctl.c @@ -562,7 +562,7 @@ static int add_matches(sd_journal *j, char **args) { else if (S_ISBLK(st.st_mode)) asprintf(&t, "_KERNEL_DEVICE=b%u:%u", major(st.st_rdev), minor(st.st_rdev)); else { - log_error("File is not a device node, regular file or is not executable: %s", *i); + log_error("File is neither a device node, nor regular file, nor executable: %s", *i); return -EINVAL; }