X-Git-Url: https://git.gag.com/?a=blobdiff_plain;f=sample%2Fztouch;h=c5d30ad6794980050bd83b51014933d1807062e2;hb=dc84183747ce1703eb99685b5dbde1f65a143c06;hp=e408e2bc50bdd5c24ec823ad29a198125159508b;hpb=a2016c1de6e4884f6c8ed5cc498f3bf821c25ca4;p=debian%2Fgzip diff --git a/sample/ztouch b/sample/ztouch index e408e2b..c5d30ad 100755 --- a/sample/ztouch +++ b/sample/ztouch @@ -7,9 +7,9 @@ foreach $file (@ARGV) { read (FILE, $_, 8); ($magic, $method, $flags, $time) = unpack ("A2C2V", $_); if ($magic eq "\037\213") { - utime ($time, $time, $file); + utime ($time, $time, $file); } else { - warn "$file is not compressed with gzip!\n"; + warn "$file is not compressed with gzip!\n"; } }