From cdf8bcb8d93b4365f124e994c31687b39b619253 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 21 May 2012 20:12:30 +0300 Subject: [PATCH] pg_ctl: Sort signal list in --help output The list was neither logical nor numerical nor alphabetical. Let's go with alphabetical. --- src/bin/pg_ctl/pg_ctl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c index 26dd30cbb5..329cc24dd6 100644 --- a/src/bin/pg_ctl/pg_ctl.c +++ b/src/bin/pg_ctl/pg_ctl.c @@ -1791,7 +1791,7 @@ do_help(void) printf(_(" immediate quit without complete shutdown; will lead to recovery on restart\n")); printf(_("\nAllowed signal names for kill:\n")); - printf(" HUP INT QUIT ABRT TERM USR1 USR2\n"); + printf(" ABRT HUP INT QUIT TERM USR1 USR2\n"); #if defined(WIN32) || defined(__CYGWIN__) printf(_("\nOptions for register and unregister:\n")); -- 2.40.0