summaryrefslogtreecommitdiff
path: root/taint.c
diff options
context:
space:
mode:
authorHans Mulder <hansmu@xs4all.nl>1999-01-05 08:47:31 -0800
committerJarkko Hietaniemi <jhi@iki.fi>1999-01-06 11:21:48 +0000
commit82f1aded4f41f8d8402d4d027e6ffe4efb64895c (patch)
tree0f40777a758f58511addb70637055664d66723b6 /taint.c
parentde592821d3f82766f756d9769074aec8d884d942 (diff)
downloadperl-82f1aded4f41f8d8402d4d027e6ffe4efb64895c.tar.gz
taint.c fix for VMS
To: perl5-porters@perl.org, vmsperl@perl.org Message-Id: <3.0.6.32.19990105164731.00b5b2d0@ous.edu> (the ext/IO/lib/IO/Socket.pm was not really changed here; it was a leftover from #2569) p4raw-id: //depot/cfgperl@2570
Diffstat (limited to 'taint.c')
-rw-r--r--taint.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/taint.c b/taint.c
index cdf9a7e535..e163eb4135 100644
--- a/taint.c
+++ b/taint.c
@@ -50,6 +50,7 @@ taint_env(void)
return;
#ifdef VMS
+ {
int i = 0;
char name[10 + TYPE_DIGITS(int)] = "DCL$PATH";
@@ -71,6 +72,7 @@ taint_env(void)
}
i++;
}
+ }
#endif /* VMS */
svp = hv_fetch(GvHVn(PL_envgv),"PATH",4,FALSE);