cryptsetup: fix typo
authorYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 13 Feb 2024 19:01:36 +0000 (04:01 +0900)
committerYu Watanabe <watanabe.yu+github@gmail.com>
Tue, 13 Feb 2024 19:01:52 +0000 (04:01 +0900)
Follow-up for c5daf14c88ba44cefabe052de93a29d28b6b0175.

src/cryptsetup/cryptsetup.c

index a10b49dda0f390f7e599f3221c83a23fd7759fd5..1caaa514d5da0a7420c62f3bd5aa3bc1c5fe9638 100644 (file)
@@ -529,7 +529,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);