From 603aafb3dbc38ed2dcde5babac20be174890e8a3 Mon Sep 17 00:00:00 2001 From: "FeRD (Frank Dana)" Date: Mon, 9 May 2022 07:31:13 -0400 Subject: [PATCH] hardlink: Move -c option in --help The new placement mirrors its position in the manpage, and keeps it grouped with the individual flags for which it acts as a shorthand. Signed-off-by: FeRD (Frank Dana) --- misc-utils/hardlink.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/misc-utils/hardlink.c b/misc-utils/hardlink.c index dd55af12aa..4123f33a2a 100644 --- a/misc-utils/hardlink.c +++ b/misc-utils/hardlink.c @@ -1127,6 +1127,7 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" -p, --ignore-mode ignore changes of file mode\n"), out); fputs(_(" -o, --ignore-owner ignore owner changes\n"), out); fputs(_(" -t, --ignore-time ignore timestamps (when testing for equality)\n"), out); + fputs(_(" -c, --content compare only file contents, same as -pot\n"), out); #ifdef USE_XATTR fputs(_(" -X, --respect-xattrs respect extended attributes\n"), out); #endif @@ -1145,7 +1146,6 @@ static void __attribute__((__noreturn__)) usage(void) fputs(_(" -S, --maximum-size maximum size for files.\n"), out); fputs(_(" -b, --io-size I/O buffer size for file reading (speedup, using more RAM)\n"), out); fputs(_(" -r, --cache-size memory limit for cached file content data\n"), out); - fputs(_(" -c, --content compare only file contents, same as -pot\n"), out); fputs(USAGE_SEPARATOR, out); printf(USAGE_HELP_OPTIONS(28)); -- 2.47.2