From: Michal Schmidt Date: Thu, 5 Nov 2015 12:44:06 +0000 (+0100) Subject: journal: fix incorrect errno reporting X-Git-Tag: v228~79^2~13 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=c3753458fc30f35b7c2d2c5d5873198cd18131d8;p=thirdparty%2Fsystemd.git journal: fix incorrect errno reporting pread() returns -1 on error and sets errno. Do not use the -1 as errno. --- diff --git a/src/journal/journald-native.c b/src/journal/journald-native.c index 6fff4fe4733..b1fc8755963 100644 --- a/src/journal/journald-native.c +++ b/src/journal/journald-native.c @@ -413,7 +413,7 @@ void server_process_native_file( n = pread(fd, p, st.st_size, 0); if (n < 0) - log_error_errno(n, "Failed to read file, ignoring: %m"); + log_error_errno(errno, "Failed to read file, ignoring: %m"); else if (n > 0) server_process_native_message(s, p, n, ucred, tv, label, label_len); }