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

Commit d048a32

Browse files
committed
pg_createsubscriber: Indent --help output correctly
It was using 1 space indent instead of the 2 spaces used everywhere else.
1 parent 3639d08 commit d048a32

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

src/bin/pg_basebackup/pg_createsubscriber.c

+16-16
Original file line numberDiff line numberDiff line change
@@ -216,22 +216,22 @@ usage(void)
216216
printf(_("Usage:\n"));
217217
printf(_(" %s [OPTION]...\n"), progname);
218218
printf(_("\nOptions:\n"));
219-
printf(_(" -d, --database=DBNAME database to create a subscription\n"));
220-
printf(_(" -D, --pgdata=DATADIR location for the subscriber data directory\n"));
221-
printf(_(" -n, --dry-run dry run, just show what would be done\n"));
222-
printf(_(" -p, --subscriber-port=PORT subscriber port number (default %s)\n"), DEFAULT_SUB_PORT);
223-
printf(_(" -P, --publisher-server=CONNSTR publisher connection string\n"));
224-
printf(_(" -s, --socket-directory=DIR socket directory to use (default current directory)\n"));
225-
printf(_(" -t, --recovery-timeout=SECS seconds to wait for recovery to end\n"));
226-
printf(_(" -U, --subscriber-username=NAME subscriber username\n"));
227-
printf(_(" -v, --verbose output verbose messages\n"));
228-
printf(_(" --config-file=FILENAME use specified main server configuration\n"
229-
" file when running target cluster\n"));
230-
printf(_(" --publication=NAME publication name\n"));
231-
printf(_(" --replication-slot=NAME replication slot name\n"));
232-
printf(_(" --subscription=NAME subscription name\n"));
233-
printf(_(" -V, --version output version information, then exit\n"));
234-
printf(_(" -?, --help show this help, then exit\n"));
219+
printf(_(" -d, --database=DBNAME database to create a subscription\n"));
220+
printf(_(" -D, --pgdata=DATADIR location for the subscriber data directory\n"));
221+
printf(_(" -n, --dry-run dry run, just show what would be done\n"));
222+
printf(_(" -p, --subscriber-port=PORT subscriber port number (default %s)\n"), DEFAULT_SUB_PORT);
223+
printf(_(" -P, --publisher-server=CONNSTR publisher connection string\n"));
224+
printf(_(" -s, --socket-directory=DIR socket directory to use (default current directory)\n"));
225+
printf(_(" -t, --recovery-timeout=SECS seconds to wait for recovery to end\n"));
226+
printf(_(" -U, --subscriber-username=NAME subscriber username\n"));
227+
printf(_(" -v, --verbose output verbose messages\n"));
228+
printf(_(" --config-file=FILENAME use specified main server configuration\n"
229+
" file when running target cluster\n"));
230+
printf(_(" --publication=NAME publication name\n"));
231+
printf(_(" --replication-slot=NAME replication slot name\n"));
232+
printf(_(" --subscription=NAME subscription name\n"));
233+
printf(_(" -V, --version output version information, then exit\n"));
234+
printf(_(" -?, --help show this help, then exit\n"));
235235
printf(_("\nReport bugs to <%s>.\n"), PACKAGE_BUGREPORT);
236236
printf(_("%s home page: <%s>\n"), PACKAGE_NAME, PACKAGE_URL);
237237
}

0 commit comments

Comments
 (0)