Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit cdf8bcb

Browse files
committed
pg_ctl: Sort signal list in --help output
The list was neither logical nor numerical nor alphabetical. Let's go with alphabetical.
1 parent 4c39a09 commit cdf8bcb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/bin/pg_ctl/pg_ctl.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -1791,7 +1791,7 @@ do_help(void)
17911791
printf(_(" immediate quit without complete shutdown; will lead to recovery on restart\n"));
17921792

17931793
printf(_("\nAllowed signal names for kill:\n"));
1794-
printf(" HUP INT QUIT ABRT TERM USR1 USR2\n");
1794+
printf(" ABRT HUP INT QUIT TERM USR1 USR2\n");
17951795

17961796
#if defined(WIN32) || defined(__CYGWIN__)
17971797
printf(_("\nOptions for register and unregister:\n"));

0 commit comments

Comments
 (0)