diff options
author | Gaƫl PORTAY <gael.portay@gmail.com> | 2022-03-28 13:09:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-03-29 02:09:36 +0900 |
commit | f3b3cab2f2c6e005fd11ca93903b5ff78dbca21e (patch) | |
tree | 655aca07225d214cfdc6c8515084cfbf3cefd380 /src | |
parent | 288bd406200bb32f288ea076c844c9b28fbe15ed (diff) | |
download | systemd-f3b3cab2f2c6e005fd11ca93903b5ff78dbca21e.tar.gz |
veritysetup: fix typo (#22886)
Diffstat (limited to 'src')
-rw-r--r-- | src/veritysetup/veritysetup.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/veritysetup/veritysetup.c b/src/veritysetup/veritysetup.c index 61973bf37a..1536bb2b88 100644 --- a/src/veritysetup/veritysetup.c +++ b/src/veritysetup/veritysetup.c @@ -151,7 +151,7 @@ static int run(int argc, char *argv[]) { size_t l; if (argc < 6) - return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "attach requires at least two arguments."); + return log_error_errno(SYNTHETIC_ERRNO(EINVAL), "attach requires at least four arguments."); r = unhexmem(argv[5], strlen(argv[5]), &m, &l); if (r < 0) |