Commit f44c64c7 authored by Bruce Momjian's avatar Bruce Momjian

Quote SHELL arguments only on Win32.

parent ff5b6c98
...@@ -3,7 +3,7 @@ ...@@ -3,7 +3,7 @@
* *
* Copyright (c) 2000-2004, PostgreSQL Global Development Group * Copyright (c) 2000-2004, PostgreSQL Global Development Group
* *
* $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.135 2004/11/15 23:15:12 tgl Exp $ * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.136 2004/11/30 19:01:28 momjian Exp $
*/ */
#include "postgres_fe.h" #include "postgres_fe.h"
#include "command.h" #include "command.h"
...@@ -1563,10 +1563,12 @@ do_shell(const char *command) ...@@ -1563,10 +1563,12 @@ do_shell(const char *command)
sys = pg_malloc(strlen(shellName) + 16); sys = pg_malloc(strlen(shellName) + 16);
sprintf(sys, sprintf(sys,
/* See EDITOR handling comment for an explaination */
#ifndef WIN32 #ifndef WIN32
"exec " "exec %s", shellName);
#endif #else
"%s\"%s\"%s", SYSTEMQUOTE, shellName, SYSTEMQUOTE); "%s\"%s\"%s", SYSTEMQUOTE, shellName, SYSTEMQUOTE);
#endif
result = system(sys); result = system(sys);
free(sys); free(sys);
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment