From: Topi Miettinen Date: Fri, 21 Jul 2023 11:55:40 +0000 (+0000) Subject: homework-luks: fix typos X-Git-Tag: v254-rc3~14 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d0b2839ddc80b55eeb9e5d98873b6968e8074fe6;p=thirdparty%2Fsystemd.git homework-luks: fix typos --- diff --git a/src/home/homework-luks.c b/src/home/homework-luks.c index 01dd05e8f1b..06e346e1e04 100644 --- a/src/home/homework-luks.c +++ b/src/home/homework-luks.c @@ -572,7 +572,7 @@ static int luks_open( if (r == -ENOKEY) return log_error_errno(r, "No valid password for LUKS superblock."); if (r < 0) - return log_error_errno(r, "Failed to unlocks LUKS superblock: %m"); + return log_error_errno(r, "Failed to unlock LUKS superblock: %m"); log_info("Discovered used LUKS device /dev/mapper/%s, and validated password.", setup->dm_name); @@ -3630,7 +3630,7 @@ int home_passwd_luks( if (r == -ENOKEY) return log_error_errno(SYNTHETIC_ERRNO(ENOKEY), "Failed to unlock LUKS superblock with supplied passwords."); if (r < 0) - return log_error_errno(r, "Failed to unlocks LUKS superblock: %m"); + return log_error_errno(r, "Failed to unlock LUKS superblock: %m"); n_effective = strv_length(effective_passwords);