summaryrefslogtreecommitdiff
path: root/pod/perlsec.pod
diff options
context:
space:
mode:
authorM. J. T. Guy <mjtg@cus.cam.ac.uk>1998-06-24 14:13:02 +0100
committerGurusamy Sarathy <gsar@cpan.org>1998-06-28 19:18:29 +0000
commit62f468fcc5ab60fb5a3476c4f51edf76066f5db7 (patch)
treea76a004fbe880fbb21e74437c789e34240b77fea /pod/perlsec.pod
parentd09ae4e65fd5bf88945016a3fc05dfaedbf59acc (diff)
downloadperl-62f468fcc5ab60fb5a3476c4f51edf76066f5db7.tar.gz
Insecure $ENV{} message out of step with perldiag
Message-Id: <E0yooQA-0003za-00@taurus.cus.cam.ac.uk> p4raw-id: //depot/perl@1236
Diffstat (limited to 'pod/perlsec.pod')
-rw-r--r--pod/perlsec.pod2
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlsec.pod b/pod/perlsec.pod
index 4a743c7430..0b22acd9cd 100644
--- a/pod/perlsec.pod
+++ b/pod/perlsec.pod
@@ -88,7 +88,7 @@ For example:
@files = glob('*.c'); # Always insecure (uses csh)
If you try to do something insecure, you will get a fatal error saying
-something like "Insecure dependency" or "Insecure PATH". Note that you
+something like "Insecure dependency" or "Insecure $ENV{PATH}". Note that you
can still write an insecure B<system> or B<exec>, but only by explicitly
doing something like the "considered secure" example above.