From: Yu Watanabe Date: Tue, 13 Feb 2024 19:01:36 +0000 (+0900) Subject: cryptsetup: fix typo X-Git-Tag: v256-rc1~882 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a14d3b48f7647676a0c43bceaecd56d9a77e3de6;p=thirdparty%2Fsystemd.git cryptsetup: fix typo Follow-up for c5daf14c88ba44cefabe052de93a29d28b6b0175. --- diff --git a/src/cryptsetup/cryptsetup.c b/src/cryptsetup/cryptsetup.c index a10b49dda0f..1caaa514d5d 100644 --- a/src/cryptsetup/cryptsetup.c +++ b/src/cryptsetup/cryptsetup.c @@ -529,7 +529,7 @@ static int parse_one_option(const char *option) { /* cryptsetup (cli) supports 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);