mirror of
https://github.com/morgan9e/systemd
synced 2026-04-14 00:14:32 +09:00
hibernate-resume: EINVAL -> ENOTBLK where appropriate
This commit is contained in:
@@ -67,7 +67,7 @@ static int run(int argc, char *argv[]) {
|
||||
return log_error_errno(errno, "Failed to stat resume device '%s': %m", arg_info.device);
|
||||
|
||||
if (!S_ISBLK(st.st_mode))
|
||||
return log_error_errno(SYNTHETIC_ERRNO(EINVAL),
|
||||
return log_error_errno(SYNTHETIC_ERRNO(ENOTBLK),
|
||||
"Resume device '%s' is not a block device.", arg_info.device);
|
||||
|
||||
/* The write shall not return if a resume takes place. */
|
||||
|
||||
Reference in New Issue
Block a user