separate the 0755 from the . $TAINT0. this silences the warning "Dot after octal...
Richard Soderberg [Wed, 28 Apr 2010 21:44:47 +0000 (14:44 -0700)]
t/op/taint.t

index e3a5712..83fcef7 100644 (file)
@@ -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';