From: Sami Kerola Date: Sun, 21 May 2017 16:47:39 +0000 (+0100) Subject: uuidgen: slice up the usage text X-Git-Tag: v2.31-rc1~303 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=504c03ecf8d5f205e740cd698a1c3b6d3303cb12;p=thirdparty%2Futil-linux.git uuidgen: slice up the usage text Signed-off-by: Sami Kerola --- diff --git a/misc-utils/uuidgen.c b/misc-utils/uuidgen.c index 911fead72e..4c1d47d5e1 100644 --- a/misc-utils/uuidgen.c +++ b/misc-utils/uuidgen.c @@ -28,11 +28,11 @@ static void __attribute__ ((__noreturn__)) usage(FILE * out) fputs(_("Create a new UUID value.\n"), out); fputs(USAGE_OPTIONS, out); - fputs(_(" -r, --random generate random-based uuid\n" - " -t, --time generate time-based uuid\n" - " -V, --version output version information and exit\n" - " -h, --help display this help and exit\n\n"), out); - + fputs(_(" -r, --random generate random-based uuid\n"), out); + fputs(_(" -t, --time generate time-based uuid\n"), out); + fputs(USAGE_SEPARATOR, out); + fputs(USAGE_HELP, out); + fputs(USAGE_VERSION, out); fprintf(out, USAGE_MAN_TAIL("uuidgen(1)")); exit(out == stderr ? EXIT_FAILURE : EXIT_SUCCESS); }