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

Commit 8928d4d

Browse files
committed
Correct spelling
1 parent 7f66816 commit 8928d4d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

src/bin/pg_resetxlog/pg_resetxlog.c

+5-5
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
* Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group
2424
* Portions Copyright (c) 1994, Regents of the University of California
2525
*
26-
* $PostgreSQL: pgsql/src/bin/pg_resetxlog/pg_resetxlog.c,v 1.35 2005/07/04 04:51:51 tgl Exp $
26+
* $PostgreSQL: pgsql/src/bin/pg_resetxlog/pg_resetxlog.c,v 1.36 2005/09/29 08:34:50 petere Exp $
2727
*
2828
*-------------------------------------------------------------------------
2929
*/
@@ -156,7 +156,7 @@ main(int argc, char *argv[])
156156
}
157157
if (set_mxid == 0)
158158
{
159-
fprintf(stderr, _("%s: multi transaction ID (-m) must not be 0\n"), progname);
159+
fprintf(stderr, _("%s: multitransaction ID (-m) must not be 0\n"), progname);
160160
exit(1);
161161
}
162162
break;
@@ -171,7 +171,7 @@ main(int argc, char *argv[])
171171
}
172172
if (set_mxoff == -1)
173173
{
174-
fprintf(stderr, _("%s: multi transaction offset (-O) must not be -1\n"), progname);
174+
fprintf(stderr, _("%s: multitransaction offset (-O) must not be -1\n"), progname);
175175
exit(1);
176176
}
177177
break;
@@ -798,11 +798,11 @@ usage(void)
798798
printf(_("Options:\n"));
799799
printf(_(" -f force update to be done\n"));
800800
printf(_(" -l TLI,FILE,SEG force minimum WAL starting location for new transaction log\n"));
801+
printf(_(" -m XID set next multitransaction ID\n"));
801802
printf(_(" -n no update, just show extracted control values (for testing)\n"));
802803
printf(_(" -o OID set next OID\n"));
804+
printf(_(" -O OFFSET set next multitransaction offset\n"));
803805
printf(_(" -x XID set next transaction ID\n"));
804-
printf(_(" -m multiXID set next multi transaction ID\n"));
805-
printf(_(" -O multiOffset set next multi transaction offset\n"));
806806
printf(_(" --help show this help, then exit\n"));
807807
printf(_(" --version output version information, then exit\n"));
808808
printf(_("\nReport bugs to <pgsql-bugs@postgresql.org>.\n"));

0 commit comments

Comments
 (0)