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

Commit c938a4e

Browse files
committed
Make synopses of -t option consistent
1 parent f15c08f commit c938a4e

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/bin/pg_ctl/pg_ctl.c

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Portions Copyright (c) 1996-2007, PostgreSQL Global Development Group
66
*
7-
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.86 2007/11/10 21:48:51 momjian Exp $
7+
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.87 2007/11/15 18:37:23 petere Exp $
88
*
99
*-------------------------------------------------------------------------
1010
*/
@@ -1465,22 +1465,22 @@ do_help(void)
14651465
printf(_("%s is a utility to start, stop, restart, reload configuration files,\n"
14661466
"report the status of a PostgreSQL server, or signal a PostgreSQL process.\n\n"), progname);
14671467
printf(_("Usage:\n"));
1468-
printf(_(" %s start [-w] [-t secs] [-D DATADIR] [-s] [-l FILENAME] [-o \"OPTIONS\"]\n"), progname);
1468+
printf(_(" %s start [-w] [-t SECS] [-D DATADIR] [-s] [-l FILENAME] [-o \"OPTIONS\"]\n"), progname);
14691469
printf(_(" %s stop [-W] [-D DATADIR] [-s] [-m SHUTDOWN-MODE]\n"), progname);
1470-
printf(_(" %s restart [-w] [-t secs] [-D DATADIR] [-s] [-m SHUTDOWN-MODE]\n [-o \"OPTIONS\"]\n"), progname);
1470+
printf(_(" %s restart [-w] [-t SECS] [-D DATADIR] [-s] [-m SHUTDOWN-MODE]\n [-o \"OPTIONS\"]\n"), progname);
14711471
printf(_(" %s reload [-D DATADIR] [-s]\n"), progname);
14721472
printf(_(" %s status [-D DATADIR]\n"), progname);
14731473
printf(_(" %s kill SIGNALNAME PID\n"), progname);
14741474
#if defined(WIN32) || defined(__CYGWIN__)
14751475
printf(_(" %s register [-N SERVICENAME] [-U USERNAME] [-P PASSWORD] [-D DATADIR]\n"
1476-
" [-w] [-t timeout] [-o \"OPTIONS\"]\n"), progname);
1476+
" [-w] [-t SECS] [-o \"OPTIONS\"]\n"), progname);
14771477
printf(_(" %s unregister [-N SERVICENAME]\n"), progname);
14781478
#endif
14791479

14801480
printf(_("\nCommon options:\n"));
14811481
printf(_(" -D, --pgdata DATADIR location of the database storage area\n"));
14821482
printf(_(" -s, --silent only print errors, no informational messages\n"));
1483-
printf(_(" -t secs seconds to wait when using -w option\n"));
1483+
printf(_(" -t SECS seconds to wait when using -w option\n"));
14841484
printf(_(" -w wait until operation completes\n"));
14851485
printf(_(" -W do not wait until operation completes\n"));
14861486
printf(_(" --help show this help, then exit\n"));

0 commit comments

Comments
 (0)