@@ -83,13 +83,13 @@ usage(void)
83
83
printf (_ (" -F --fsync-interval=SECS\n"
84
84
" frequency of syncs to the output file (default: %d)\n" ), (fsync_interval / 1000 ));
85
85
printf (_ (" -o, --option=NAME[=VALUE]\n"
86
- " Specify option NAME with optional value VALUE, to be passed\n"
86
+ " specify option NAME with optional value VALUE, to be passed\n"
87
87
" to the output plugin\n" ));
88
88
printf (_ (" -P, --plugin=PLUGIN use output plugin PLUGIN (default: %s)\n" ), plugin );
89
89
printf (_ (" -s, --status-interval=SECS\n"
90
90
" time between status packets sent to server (default: %d)\n" ), (standby_message_timeout / 1000 ));
91
91
printf (_ (" -S, --slot=SLOT use existing replication slot SLOT instead of starting a new one\n" ));
92
- printf (_ (" -I, --startpos=PTR Where in an existing slot should the streaming start\n" ));
92
+ printf (_ (" -I, --startpos=PTR where in an existing slot should the streaming start\n" ));
93
93
printf (_ ("\nAction to be performed:\n" ));
94
94
printf (_ (" --create create a new replication slot (for the slotname see --slot)\n" ));
95
95
printf (_ (" --start start streaming in a replication slot (for the slotname see --slot)\n" ));
@@ -935,7 +935,7 @@ main(int argc, char **argv)
935
935
if (sscanf (PQgetvalue (res , 0 , 1 ), "%X/%X" , & hi , & lo ) != 2 )
936
936
{
937
937
fprintf (stderr ,
938
- _ ("%s: could not parse log location \"%s\"\n" ),
938
+ _ ("%s: could not parse transaction log location \"%s\"\n" ),
939
939
progname , PQgetvalue (res , 0 , 1 ));
940
940
disconnect_and_exit (1 );
941
941
}
0 commit comments