From: Bruce Momjian <bruce@momjian.us>
Date: Thu, 10 Jun 2004 17:45:09 +0000 (+0000)
Subject: Add START background code for another code path, per Andrew Dunstan.
X-Git-Tag: REL8_0_0BETA1~392
X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=75db5a665fac305ac0170f49f39c1b01d026e8d3;p=postgresql

Add START background code for another code path, per Andrew Dunstan.
---

diff --git a/src/bin/pg_ctl/pg_ctl.c b/src/bin/pg_ctl/pg_ctl.c
index e0962dfb8b..dbba0ac14e 100644
--- a/src/bin/pg_ctl/pg_ctl.c
+++ b/src/bin/pg_ctl/pg_ctl.c
@@ -4,7 +4,7 @@
  *
  * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group
  *
- * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.10 2004/06/10 17:26:14 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/pg_ctl/pg_ctl.c,v 1.11 2004/06/10 17:45:09 momjian Exp $
  *
  *-------------------------------------------------------------------------
  */
@@ -232,7 +232,11 @@ start_postmaster(void)
 				 SYSTEMQUOTE, postgres_path, post_opts, DEVNULL, log_file,
 				 SYSTEMQUOTE);
 	else
+#ifndef WIN32
 		snprintf(cmd, MAXPGPATH, "%s\"%s\" %s < \"%s\" 2>&1 &%s",
+#else
+		snprintf(cmd, MAXPGPATH, "START %s\"%s\" %s < \"%s\" 2>&1%s",
+#endif
 				 SYSTEMQUOTE, postgres_path, post_opts, DEVNULL, SYSTEMQUOTE);
 	return system(cmd);
 }