From: Benno Schulenberg Date: Mon, 27 Jan 2025 15:21:44 +0000 (+0100) Subject: blkid: say "override" instead of "overwrite" in the --help text X-Git-Tag: v2.42-start~76 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=4a3813c565a65d23844db8abb679aa22aef72f98;p=thirdparty%2Futil-linux.git blkid: say "override" instead of "overwrite" in the --help text 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 --- diff --git a/misc-utils/blkid.c b/misc-utils/blkid.c index d5fe4f1fa..63e61b5fa 100644 --- a/misc-utils/blkid.c +++ b/misc-utils/blkid.c @@ -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 set hint for probing function\n"), out); - fputs(_( " -S, --size overwrite device size\n"), out); + fputs(_( " -S, --size override device size\n"), out); fputs(_( " -O, --offset probe at the given offset\n"), out); fputs(_( " -u, --usages filter by \"usage\" (e.g. -u filesystem,raid)\n"), out); fputs(_( " -n, --match-types filter by filesystem type (e.g. -n vfat,ext3)\n"), out);