]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
blkid: say "override" instead of "overwrite" in the --help text
authorBenno Schulenberg <bensberg@telfort.nl>
Mon, 27 Jan 2025 15:21:44 +0000 (16:21 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 29 Jan 2025 12:18:41 +0000 (13:18 +0100)
The `blkid` tool does not write anything to the probed device, so
seeing "overwrite" in the usage text was somewhat disconcerting.

Signed-off-by: Benno Schulenberg <bensberg@telfort.nl>
misc-utils/blkid.c

index d5fe4f1fa0002a49232199b1cf5e7bcdb1b95a81..63e61b5fae1f02d6da7360f2481247b949ad4bf2 100644 (file)
@@ -96,7 +96,7 @@ static void __attribute__((__noreturn__)) usage(void)
        fputs(_(        " -p, --probe                low-level superblocks probing (bypass cache)\n"), out);
        fputs(_(        " -i, --info                 gather information about I/O limits\n"), out);
        fputs(_(        " -H, --hint <value>         set hint for probing function\n"), out);
-       fputs(_(        " -S, --size <size>          overwrite device size\n"), out);
+       fputs(_(        " -S, --size <size>          override device size\n"), out);
        fputs(_(        " -O, --offset <offset>      probe at the given offset\n"), out);
        fputs(_(        " -u, --usages <list>        filter by \"usage\" (e.g. -u filesystem,raid)\n"), out);
        fputs(_(        " -n, --match-types <list>   filter by filesystem type (e.g. -n vfat,ext3)\n"), out);