From 1d13bed7356724af9ac104812270577b2899408e Mon Sep 17 00:00:00 2001
From: Bruce Momjian <bruce@momjian.us>
Date: Sat, 6 Nov 2004 17:56:40 +0000
Subject: [PATCH] Remove directory from cmd.exe default shell.

---
 src/bin/psql/command.c | 8 ++++++--
 1 file changed, 6 insertions(+), 2 deletions(-)

diff --git a/src/bin/psql/command.c b/src/bin/psql/command.c
index 727f8c86a6c..6530677bf75 100644
--- a/src/bin/psql/command.c
+++ b/src/bin/psql/command.c
@@ -3,7 +3,7 @@
  *
  * Copyright (c) 2000-2004, PostgreSQL Global Development Group
  *
- * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.132 2004/11/06 05:20:41 momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.133 2004/11/06 17:56:40 momjian Exp $
  */
 #include "postgres_fe.h"
 #include "command.h"
@@ -1528,7 +1528,11 @@ do_pset(const char *param, const char *value, printQueryOpt *popt, bool quiet)
 #ifndef WIN32
 #define DEFAULT_SHELL "/bin/sh"
 #else
-#define DEFAULT_SHELL "c:/windows/system32/cmd.exe"
+/*
+ *	CMD.EXE is in different places in different Win32 releases so we
+ *	have to rely on the path to find it.
+ */
+#define DEFAULT_SHELL "cmd.exe"
 #endif
 
 static bool
-- 
GitLab