From: Lennart Poettering Date: Mon, 17 Aug 2020 18:20:47 +0000 (+0200) Subject: homework: correct error passed into log message X-Git-Tag: v247-rc1~410^2~2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6d7b47eb3eb71b37c768e588173f2c8169e953e7;p=thirdparty%2Fsystemd.git homework: correct error passed into log message --- diff --git a/src/home/homework-luks.c b/src/home/homework-luks.c index 7ce59c8bf33..fea00091f62 100644 --- a/src/home/homework-luks.c +++ b/src/home/homework-luks.c @@ -1110,7 +1110,9 @@ int home_prepare_luks( if (fstat(fd, &st) < 0) return log_error_errno(errno, "Failed to fstat() image file: %m"); if (!S_ISREG(st.st_mode) && !S_ISBLK(st.st_mode)) - return log_error_errno(errno, "Image file %s is not a regular file or block device: %m", ip); + return log_error_errno( + S_ISDIR(st.st_mode) ? SYNTHETIC_ERRNO(EISDIR) : SYNTHETIC_ERRNO(EBADFD), + "Image file %s is not a regular file or block device: %m", ip); r = luks_validate(fd, user_record_user_name_and_realm(h), h->partition_uuid, &found_partition_uuid, &offset, &size); if (r < 0)