aboutsummaryrefslogtreecommitdiff
path: root/findutils/grep.c
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2008-01-24 01:30:36 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2008-01-24 01:30:36 +0000
commit8e8200a772c2cc8a07327f1b6161b671e97b5017 (patch)
treeaa52e7692e647d4c65282011fbc3205ed26a765f /findutils/grep.c
parent46ef46aefb800e3865276b99caf88b6c309a841f (diff)
downloadbusybox-8e8200a772c2cc8a07327f1b6161b671e97b5017.tar.gz
grep: fix wrong filename in error message
Diffstat (limited to 'findutils/grep.c')
-rw-r--r--findutils/grep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/findutils/grep.c b/findutils/grep.c
index c2a6a2187..4c9582e8c 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;
}