From 8e8200a772c2cc8a07327f1b6161b671e97b5017 Mon Sep 17 00:00:00 2001 From: Denis Vlasenko Date: Thu, 24 Jan 2008 01:30:36 +0000 Subject: [PATCH] grep: fix wrong filename in error message --- findutils/grep.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/findutils/grep.c b/findutils/grep.c index c2a6a21..4c9582e 100644 --- a/findutils/grep.c +++ b/findutils/grep.c @@ -376,7 +376,7 @@ static int file_action_grep(const char *filename, struct stat *statbuf, void* ma FILE *file = fopen(filename, "r"); if (file == NULL) { if (!SUPPRESS_ERR_MSGS) - bb_simple_perror_msg(cur_file); + bb_simple_perror_msg(filename); open_errors = 1; return 0; } -- 2.7.4