summaryrefslogtreecommitdiff
path: root/t/op/taint.t
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2000-03-19 01:22:47 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2000-03-19 01:22:47 +0000
commit2959b6e3384ea619841b1f9556846dd2755caf04 (patch)
tree2d04c06f1d270b5ae604b56df892ea674b740be4 /t/op/taint.t
parent8341b96b912f641681f822ceb6ec0b8b19720375 (diff)
downloadperl-2959b6e3384ea619841b1f9556846dd2755caf04.tar.gz
Taint also the passwd field of the getpw*().
p4raw-id: //depot/cfgperl@5810
Diffstat (limited to 't/op/taint.t')
-rwxr-xr-xt/op/taint.t2
1 files changed, 1 insertions, 1 deletions
diff --git a/t/op/taint.t b/t/op/taint.t
index 6a5d6b7e99..883f069dbd 100755
--- a/t/op/taint.t
+++ b/t/op/taint.t
@@ -547,7 +547,7 @@ else {
my @getpwent = getpwent();
die "getpwent: $!\n" unless (@getpwent);
test 142,( not tainted $getpwent[0]
- and not tainted $getpwent[1]
+ and tainted $getpwent[1]
and not tainted $getpwent[2]
and not tainted $getpwent[3]
and not tainted $getpwent[4]