]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
journalctl: fix loggging invocation
authorZbigniew Jędrzejewski-Szmek <zbyszek@in.waw.pl>
Fri, 4 Aug 2023 17:08:43 +0000 (18:08 +0100)
committerLuca Boccassi <luca.boccassi@gmail.com>
Fri, 4 Aug 2023 19:21:13 +0000 (20:21 +0100)
Fixup for f882a986c271c3de1c622df0f1586946b4a09fef.

src/journal/journalctl.c

index 3424819540aaede7d57916d4d16ff9c61e6369ec..24b973a20493599b5604cb9748b4111ebc550817 100644 (file)
@@ -2330,7 +2330,7 @@ static int setup_event(Context *c, int fd, sd_event **ret) {
                 return log_error_errno(r, "Failed to add io event source for journal: %m");
 
         if (fstat(STDOUT_FILENO, &st) < 0)
-                return log_error_errno(r, "Failed to stat stdout: %m");
+                return log_error_errno(errno, "Failed to stat stdout: %m");
 
         if (IN_SET(st.st_mode & S_IFMT, S_IFCHR, S_IFIFO, S_IFSOCK)) {
                 /* Also keeps an eye on STDOUT, and exits as soon as we see a POLLHUP on that, i.e. when it is closed. */