Re: why do I get the following warning for taint

2002-05-29 Thread Ovid
--- Rob Roudebush <[EMAIL PROTECTED]> wrote: > > When I run perl -c myscript.cgi to test the syntax or perl -w ..., it produces >this: Too late > for "-T" option at maintenance.cgi line 1 (my line 1 is just the shebang line with >the -T > option). Does this mean that something is wrong? > -Rob

Re: why do I get the following warning for taint

2002-05-29 Thread Kevin Meltzer
You need to have -T on the command line as well: perl -cT script To find out why, 'perldoc perlsec' Cheers, Kevin On Wed, May 29, 2002 at 10:51:45AM -0700, Rob Roudebush ([EMAIL PROTECTED]) said something similar to: > > When I run perl -c myscript.cgi to test the syntax or perl -w ..., it

why do I get the following warning for taint

2002-05-29 Thread Rob Roudebush
When I run perl -c myscript.cgi to test the syntax or perl -w ..., it produces this: Too late for "-T" option at maintenance.cgi line 1 (my line 1 is just the shebang line with the -T option). Does this mean that something is wrong? -Rob Carl Franks <[EMAIL PROTECTED]> wrote: Hi, This is how