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
committed by Pat Thoyts
parent a55e32d08a
commit 0a20caaaee

View File

@@ -217,7 +217,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;