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

Commit c9d327b

Browse files
committed
Use /B to start so a new window isn't created, per Andrew Dunstan.
1 parent 45616f5 commit c9d327b

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/bin/pg_ctl/pg_ctl.c

+4-4
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
*
55
* Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
66
*
7-
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.11 2004/06/10 17:45:09 momjian Exp $
7+
* $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.12 2004/06/10 18:02:36 momjian Exp $
88
*
99
*-------------------------------------------------------------------------
1010
*/
@@ -223,19 +223,19 @@ start_postmaster(void)
223223
char cmd[MAXPGPATH];
224224

225225
if (log_file != NULL)
226-
/* Win32 needs START rather than "&" */
226+
/* Win32 needs START /B rather than "&" */
227227
#ifndef WIN32
228228
snprintf(cmd, MAXPGPATH, "%s\"%s\" %s < %s >> \"%s\" 2>&1 &%s",
229229
#else
230-
snprintf(cmd, MAXPGPATH, "START %s\"%s\" %s < %s >> \"%s\" 2>&1%s",
230+
snprintf(cmd, MAXPGPATH, "START /B %s\"%s\" %s < %s >> \"%s\" 2>&1%s",
231231
#endif
232232
SYSTEMQUOTE, postgres_path, post_opts, DEVNULL, log_file,
233233
SYSTEMQUOTE);
234234
else
235235
#ifndef WIN32
236236
snprintf(cmd, MAXPGPATH, "%s\"%s\" %s < \"%s\" 2>&1 &%s",
237237
#else
238-
snprintf(cmd, MAXPGPATH, "START %s\"%s\" %s < \"%s\" 2>&1%s",
238+
snprintf(cmd, MAXPGPATH, "START /B %s\"%s\" %s < \"%s\" 2>&1%s",
239239
#endif
240240
SYSTEMQUOTE, postgres_path, post_opts, DEVNULL, SYSTEMQUOTE);
241241
return system(cmd);

0 commit comments

Comments
 (0)