projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
7ba3774
)
Variable initializer no longer necessary.
author
Bruce Momjian
<bruce@momjian.us>
Sat, 6 Nov 2004 05:20:41 +0000
(
05:20
+0000)
committer
Bruce Momjian
<bruce@momjian.us>
Sat, 6 Nov 2004 05:20:41 +0000
(
05:20
+0000)
src/bin/psql/command.c
patch
|
blob
|
blame
|
history
diff --git
a/src/bin/psql/command.c
b/src/bin/psql/command.c
index e1a76001ed19b38e2c1b2715f8becf98678c5cd7..727f8c86a6cae14bca4a677f18b603280ca88b6c 100644
(file)
--- 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.13
1 2004/11/06 04:29:40
momjian Exp $
+ * $PostgreSQL: pgsql/src/bin/psql/command.c,v 1.13
2 2004/11/06 05:20:41
momjian Exp $
*/
#include "postgres_fe.h"
#include "command.h"
@@
-1539,7
+1539,7
@@
do_shell(const char *command)
if (!command)
{
char *sys;
- const char *shellName
= NULL
;
+ const char *shellName;
shellName = getenv("SHELL");
#ifdef WIN32