File tree 1 file changed +5
-6
lines changed
1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -1914,11 +1914,10 @@ do_help(void)
1914
1914
1915
1915
printf (_ ("\nCommon options:\n" ));
1916
1916
printf (_ (" -D, --pgdata=DATADIR location of the database storage area\n" ));
1917
- printf (_ (" -s, --silent only print errors, no informational messages\n" ));
1918
1917
#if defined(WIN32 ) || defined(__CYGWIN__ )
1919
- printf (_ (" -e SOURCE event source to use for logging when running\n"
1920
- " as a service\n" ));
1918
+ printf (_ (" -e SOURCE event source for logging when running as a service\n" ));
1921
1919
#endif
1920
+ printf (_ (" -s, --silent only print errors, no informational messages\n" ));
1922
1921
printf (_ (" -t, --timeout=SECS seconds to wait when using -w option\n" ));
1923
1922
printf (_ (" -V, --version output version information, then exit\n" ));
1924
1923
printf (_ (" -w wait until operation completes\n" ));
@@ -2203,15 +2202,15 @@ main(int argc, char **argv)
2203
2202
pgdata_opt = psprintf ("-D \"%s\" " , pgdata_D );
2204
2203
break ;
2205
2204
}
2205
+ case 'e' :
2206
+ event_source = pg_strdup (optarg );
2207
+ break ;
2206
2208
case 'l' :
2207
2209
log_file = pg_strdup (optarg );
2208
2210
break ;
2209
2211
case 'm' :
2210
2212
set_mode (optarg );
2211
2213
break ;
2212
- case 'e' :
2213
- event_source = pg_strdup (optarg );
2214
- break ;
2215
2214
case 'N' :
2216
2215
register_servicename = pg_strdup (optarg );
2217
2216
break ;
You can’t perform that action at this time.
0 commit comments