reopen 867545 found 867545 1.40 tags 867545 + patch thanks There's something funky with the logic committed in:
https://anonscm.debian.org/git/collab-maint/pristine-tar.git/commit/?id=9265d0c0eea1620370a7261e0a6ee20eb86426fd ... so that it doesn't actually catch missing files. I think you want: sub check_file_exists { my $filename = shift; - if (!$filename eq "-" and !-f $filename) { + if ($filename ne "-" and !-f $filename) { error "The file $filename does not exist."; } } Regards, -- ,''`. : :' : Chris Lamb `. `'` [email protected] / chris-lamb.co.uk `-

