diff options
author | Bruce Momjian <bruce@momjian.us> | 2018-01-05 14:11:15 -0500 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2018-01-05 14:11:15 -0500 |
commit | 1d135657a308e920d92df35e3453ed1725dbbc0d (patch) | |
tree | a853707752ce43b7f6c644b171f1081f8d7410a4 /src | |
parent | 9a5e4a6e08faf68f9fbc1e15eeade46fd7b1d7e0 (diff) |
pg_upgrade: simplify code layout in a few places
Backpatch-through: 9.4 (9.3 didn't need improving)
Diffstat (limited to 'src')
-rw-r--r-- | src/bin/pg_upgrade/exec.c | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/bin/pg_upgrade/exec.c b/src/bin/pg_upgrade/exec.c index 6d04e5671db..13cdda281d2 100644 --- a/src/bin/pg_upgrade/exec.c +++ b/src/bin/pg_upgrade/exec.c @@ -73,7 +73,6 @@ exec_prog(const char *log_file, const char *opt_log_file, pg_log(PG_VERBOSE, "%s\n", cmd); #ifdef WIN32 - /* * For some reason, Windows issues a file-in-use error if we write data to * the log file from a non-primary thread just before we create a @@ -155,7 +154,6 @@ exec_prog(const char *log_file, const char *opt_log_file, } #ifndef WIN32 - /* * We can't do this on Windows because it will keep the "pg_ctl start" * output filename open until the server stops, so we do the \n\n above on |