From 83103627b259492109b481237bca6087601b2053 Mon Sep 17 00:00:00 2001 From: Yuri Chornoivan Date: Mon, 20 Jun 2022 11:37:44 +0000 Subject: [PATCH] Fix minor typo. Fixes: #752 --- src/utils_reencrypt.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils_reencrypt.c b/src/utils_reencrypt.c index d0702fb6..0acf1ca7 100644 --- a/src/utils_reencrypt.c +++ b/src/utils_reencrypt.c @@ -711,7 +711,7 @@ static int decrypt_luks2_datashift_init(struct crypt_device **cd, r = fchmod(fd, hdr_st.st_mode | S_IRUSR | S_IWUSR); close(fd); if (r) { - log_err(_("Failed to add read/wrire permissions to exported header file.")); + log_err(_("Failed to add read/write permissions to exported header file.")); r = -EINVAL; goto out; }