@@ -157,21 +157,21 @@ main(int argc, char **argv)
157157/* No source given? Show usage */
158158if (datadir_source == NULL && connstr_source == NULL )
159159{
160- pg_fatal ( "no source specified (--source-pgdata or --source-server)\n" );
161- pg_fatal ( "Try \"%s --help\" for more information.\n" ,progname );
160+ fprintf ( stderr , _ ( "no source specified (--source-pgdata or --source-server)\n" ) );
161+ fprintf ( stderr , _ ( "Try \"%s --help\" for more information.\n" ) ,progname );
162162exit (1 );
163163}
164164
165165if (datadir_target == NULL )
166166{
167- pg_fatal ( "no target data directory specified (--target-pgdata)\n" );
167+ fprintf ( stderr , _ ( "no target data directory specified (--target-pgdata)\n" ) );
168168fprintf (stderr ,_ ("Try \"%s --help\" for more information.\n" ),progname );
169169exit (1 );
170170}
171171
172172if (argc != optind )
173173{
174- pg_fatal ( "%s: invalid arguments\n", progname );
174+ fprintf ( stderr , _ ( " invalid arguments\n") );
175175fprintf (stderr ,_ ("Try \"%s --help\" for more information.\n" ),progname );
176176exit (1 );
177177}