mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Remove directory from cmd.exe default shell.
This commit is contained in:
parent
f245c4eb1a
commit
1d13bed735
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user