1
0
mirror of https://github.com/sheumann/hush.git synced 2025-03-24 12:34:00 +00:00

grep: fix wrong filename in error message

This commit is contained in:
Denis Vlasenko 2008-01-24 01:30:36 +00:00
parent 46ef46aefb
commit 8e8200a772

@ -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;
}