fixup! grep -I: do not bother to read known-binary files

This commit is contained in:
Johannes Schindelin 2011-10-08 15:17:31 -05:00
parent dd37f980a8
commit 1ad7341d97

View file

@ -198,7 +198,7 @@ static int skip_binary(struct grep_opt *opt, const char *filename)
attr_text = git_attr("text");
memset(&check, 0, sizeof(check));
check.attr = attr_text;
return !git_checkattr(filename, 1, &check) &&
return !git_check_attr(filename, 1, &check) &&
ATTR_FALSE(check.value);
}
return 0;