diff options
Diffstat (limited to 'userdiff.c')
-rw-r--r-- | userdiff.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/userdiff.c b/userdiff.c index f3f4be579c..46d34cc2a4 100644 --- a/userdiff.c +++ b/userdiff.c @@ -270,7 +270,8 @@ struct userdiff_driver *userdiff_find_by_name(const char *name) { return userdiff_find_by_namelen(name, len); } -struct userdiff_driver *userdiff_find_by_path(const char *path) +struct userdiff_driver *userdiff_find_by_path(struct index_state *istate, + const char *path) { static struct attr_check *check; @@ -278,8 +279,7 @@ struct userdiff_driver *userdiff_find_by_path(const char *path) check = attr_check_initl("diff", NULL); if (!path) return NULL; - if (git_check_attr(&the_index, path, check)) - return NULL; + git_check_attr(istate, path, check); if (ATTR_TRUE(check->items[0].value)) return &driver_true; |