28 lines
1.2 KiB
Diff
28 lines
1.2 KiB
Diff
From 44f65e9b9a0f67a69886d25367875e9707affc81 Mon Sep 17 00:00:00 2001
|
|
From: Yu Watanabe <watanabe.yu+github@gmail.com>
|
|
Date: Wed, 14 Feb 2024 04:01:36 +0900
|
|
Subject: [PATCH] cryptsetup: fix typo
|
|
|
|
Follow-up for c5daf14c88ba44cefabe052de93a29d28b6b0175.
|
|
|
|
(cherry picked from commit a14d3b48f7647676a0c43bceaecd56d9a77e3de6)
|
|
|
|
Resolves: RHEL-97175
|
|
---
|
|
src/cryptsetup/cryptsetup.c | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/src/cryptsetup/cryptsetup.c b/src/cryptsetup/cryptsetup.c
|
|
index f9130e2568..1f672f19f1 100644
|
|
--- a/src/cryptsetup/cryptsetup.c
|
|
+++ b/src/cryptsetup/cryptsetup.c
|
|
@@ -507,7 +507,7 @@ static int parse_one_option(const char *option) {
|
|
/* cryptsetup (cli) supports <keyring_description> passed in various formats:
|
|
* - well-known keyrings prefixed with '@' (@u user, @s session, etc)
|
|
* - text descriptions prefixed with "%:" or "%keyring:".
|
|
- * - text desription with no prefix.
|
|
+ * - text description with no prefix.
|
|
* - numeric keyring id (ignored in current patch set). */
|
|
if (*val == '@' || *val == '%')
|
|
keyring = strndup(val, sep - val);
|