]> xenbits.xensource.com Git - people/iwj/qemu.git/commitdiff
scripts/get_maintainer.pl: Print proper error message for missing $file xen-restrict-v7.0
authorIan Jackson <ian.jackson@eu.citrix.com>
Fri, 27 Oct 2017 10:23:10 +0000 (11:23 +0100)
committerIan Jackson <Ian.Jackson@eu.citrix.com>
Fri, 9 Mar 2018 16:11:17 +0000 (16:11 +0000)
If you pass scripts/get_maintainer.pl the name of a FIFO or other
exciting object (/dev/stdin, for example), it would falsely print
"file not found".  Instead: stat the object rather than using -f so
that we do not mind if the object is not a file; and print the errno
value in the error message.

Signed-off-by: Ian Jackson <Ian.Jackson@eu.citrix.com>
CC: Thomas Huth <thuth@redhat.com>
CC: Paolo Bonzini <pbonzini@redhat.com>
CC: Stefano Stabellini <sstabellini@kernel.org>
CC: Anthony PERARD <anthony.perard@citrix.com>
---
v6: New patch in this version of the series

scripts/get_maintainer.pl

index 07369aa8ea9b219d9d072b263d4dfab1bed0055e..43fb5f512f70d8f7b32681393b564dcee51c1e67 100755 (executable)
@@ -381,8 +381,8 @@ foreach my $file (@ARGV) {
        ##if $file is a directory and it lacks a trailing slash, add one
        if ((-d $file)) {
            $file =~ s@([^/])$@$1/@;
-       } elsif (!(-f $file)) {
-           die "$P: file '${file}' not found\n";
+       } elsif (!(stat $file)) {
+           die "$P: file '${file}' not found: $!\n";
        }
     }
     if ($from_filename) {