From: Richard Soderberg Date: Wed, 28 Apr 2010 21:44:47 +0000 (-0700) Subject: separate the 0755 from the . $TAINT0. this silences the warning "Dot after octal... X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=68b8dcc8db021f5e71fda964c7b85cbee9df60f6;p=p5sagit%2Fp5-mst-13.2.git separate the 0755 from the . $TAINT0. this silences the warning "Dot after octal literal is concatenation". --- diff --git a/t/op/taint.t b/t/op/taint.t index e3a5712..83fcef7 100644 --- a/t/op/taint.t +++ b/t/op/taint.t @@ -393,7 +393,7 @@ SKIP: { # Operations which affect directories can't use tainted data. { - test !eval { mkdir "foo".$TAINT, 0755.$TAINT0 }, 'mkdir'; + test !eval { mkdir "foo".$TAINT, 0755 . $TAINT0 }, 'mkdir'; test $@ =~ /^Insecure dependency/, $@; test !eval { rmdir $TAINT }, 'rmdir';