mirror of
https://gitlab.com/cryptsetup/cryptsetup.git
synced 2025-12-22 16:20:01 +01:00
Fix misleading error messages in reencrypt.
This commit is contained in:
@@ -882,13 +882,13 @@ static int copy_data(struct reenc_ctx *rc)
|
|||||||
|
|
||||||
fd_old = open(rc->crypt_path_org, O_RDONLY | (opt_directio ? O_DIRECT : 0));
|
fd_old = open(rc->crypt_path_org, O_RDONLY | (opt_directio ? O_DIRECT : 0));
|
||||||
if (fd_old == -1) {
|
if (fd_old == -1) {
|
||||||
log_err(_("Cannot open temporary LUKS header file.\n"));
|
log_err(_("Cannot open temporary LUKS device.\n"));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
fd_new = open(rc->crypt_path_new, O_WRONLY | (opt_directio ? O_DIRECT : 0));
|
fd_new = open(rc->crypt_path_new, O_WRONLY | (opt_directio ? O_DIRECT : 0));
|
||||||
if (fd_new == -1) {
|
if (fd_new == -1) {
|
||||||
log_err(_("Cannot open temporary LUKS header file.\n"));
|
log_err(_("Cannot open temporary LUKS device.\n"));
|
||||||
goto out;
|
goto out;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user