aboutsummaryrefslogtreecommitdiff
path: root/repository.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2018-01-21 21:12:37 -0800
committerJunio C Hamano <gitster@pobox.com>2018-01-21 21:12:37 -0800
commitea7b5de1c1187294d3d4dca93b129e049ca7ca76 (patch)
treef41b6fd4758d9aa51f4d6f795b071ba9b469e383 /repository.c
parent2512f15446149235156528dafbe75930c712b29e (diff)
parentb6947af2294ea0c814f5b4cb8737c782895519b2 (diff)
downloadgit-ea7b5de1c1187294d3d4dca93b129e049ca7ca76.tar.gz
git-ea7b5de1c1187294d3d4dca93b129e049ca7ca76.tar.xz
Merge branch 'bc/hash-algo' into maint
* bc/hash-algo: t5601-clone: test case-conflicting files on case-insensitive filesystem repository: pre-initialize hash algo pointer
Diffstat (limited to 'repository.c')
-rw-r--r--repository.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/repository.c b/repository.c
index 998413b8b..f66fcb134 100644
--- a/repository.c
+++ b/repository.c
@@ -5,7 +5,7 @@
/* The main repository */
static struct repository the_repo = {
- NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, &the_index, NULL, 0, 0
+ NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, &the_index, &hash_algos[GIT_HASH_SHA1], 0, 0
};
struct repository *the_repository = &the_repo;