summaryrefslogtreecommitdiff
path: root/sha1_file.c
diff options
context:
space:
mode:
authorSteffen Prohaska <prohaska@zib.de>2014-08-21 16:05:08 (GMT)
committerJunio C Hamano <gitster@pobox.com>2014-08-21 22:27:20 (GMT)
commit7ce7c7607b14248b1a3ae7cdd1c079eb3b6efa09 (patch)
tree739246ff07944defd49afcd783734f24b10c4c0e /sha1_file.c
parent6c4ab27f2378ce67940b4496365043119d7ffff2 (diff)
downloadgit-7ce7c7607b14248b1a3ae7cdd1c079eb3b6efa09.zip
git-7ce7c7607b14248b1a3ae7cdd1c079eb3b6efa09.tar.gz
git-7ce7c7607b14248b1a3ae7cdd1c079eb3b6efa09.tar.bz2
convert: drop arguments other than 'path' from would_convert_to_git()
It is only the path that matters in the decision whether to filter or not. Clarify this by making path the only argument of would_convert_to_git(). Signed-off-by: Steffen Prohaska <prohaska@zib.de> Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1_file.c')
-rw-r--r--sha1_file.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c
index 3f70b1d..00c07f2 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -3144,7 +3144,7 @@ int index_fd(unsigned char *sha1, int fd, struct stat *st,
if (!S_ISREG(st->st_mode))
ret = index_pipe(sha1, fd, type, path, flags);
else if (size <= big_file_threshold || type != OBJ_BLOB ||
- (path && would_convert_to_git(path, NULL, 0, 0)))
+ (path && would_convert_to_git(path)))
ret = index_core(sha1, fd, size, type, path, flags);
else
ret = index_stream(sha1, fd, size, type, path, flags);