[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <1268194799-16375-1-git-send-email-w.sang@pengutronix.de>
Date: Wed, 10 Mar 2010 05:19:59 +0100
From: Wolfram Sang <w.sang@...gutronix.de>
To: linux-kernel@...r.kernel.org
Cc: Wolfram Sang <w.sang@...gutronix.de>,
Stephen Hemminger <shemminger@...tta.com>,
Joe Perches <joe@...ches.com>
Subject: [PATCH] get_maintainer: Repair STDIN usage
Commit 22dd5b0cba50a197aaa3bd2790a29ee2e8e4e372 (fix perlcritic warnings) broke
the ability to handle STDIN because the three argument version of open() cannot
handle standard IO-streams (which is mentioned in PerlBestPractices, too).
Signed-off-by: Wolfram Sang <w.sang@...gutronix.de>
Cc: Stephen Hemminger <shemminger@...tta.com>
Cc: Joe Perches <joe@...ches.com>
---
Like checkpatch, the hints from perlcritic should be double-checked ;)
scripts/get_maintainer.pl | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/scripts/get_maintainer.pl b/scripts/get_maintainer.pl
index f76f3d1..6f97a13 100755
--- a/scripts/get_maintainer.pl
+++ b/scripts/get_maintainer.pl
@@ -284,7 +284,7 @@ foreach my $file (@ARGV) {
my $file_cnt = @files;
my $lastfile;
- open(my $patch, '<', $file)
+ open(my $patch, "< $file")
or die "$P: Can't open $file: $!\n";
while (<$patch>) {
my $patch_line = $_;
--
1.7.0
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists