projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9a8cc15
)
Fix perl thinko in commit fed6df486dca
author
Andrew Dunstan
Tue, 2 May 2017 12:20:11 +0000
(08:20 -0400)
committer
Andrew Dunstan
Tue, 2 May 2017 12:23:05 +0000
(08:23 -0400)
Report and fix from Vaishnavi Prabakaran
Backpatch to 9.4 like original.
src/tools/msvc/vcregress.pl
patch
|
blob
|
blame
|
history
diff --git
a/src/tools/msvc/vcregress.pl
b/src/tools/msvc/vcregress.pl
index 94b92a033dd5780c06d9dbc46cfb203588749fed..bd1b607b001b7a31dcf3f6d97d5ddbd74858fb04 100644
(file)
--- a/
src/tools/msvc/vcregress.pl
+++ b/
src/tools/msvc/vcregress.pl
@@
-89,7
+89,7
@@
my $proc = $command{$what};
exit 3 unless $proc;
-&$proc(@
_
);
+&$proc(@
ARGV
);
exit 0;