aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--fsck.c2
-rwxr-xr-xt/t1450-fsck.sh1
2 files changed, 2 insertions, 1 deletions
diff --git a/fsck.c b/fsck.c
index 99c049767..918bf9a31 100644
--- a/fsck.c
+++ b/fsck.c
@@ -175,7 +175,7 @@ static int fsck_tree(struct tree *item, int strict, fsck_error error_func)
has_dot = 1;
if (!strcmp(name, ".."))
has_dotdot = 1;
- if (!strcmp(name, ".git"))
+ if (!strcasecmp(name, ".git"))
has_dotgit = 1;
has_zero_pad |= *(char *)desc.buffer == '0';
update_tree_entry(&desc);
diff --git a/t/t1450-fsck.sh b/t/t1450-fsck.sh
index 4d8a4fe3c..043871255 100755
--- a/t/t1450-fsck.sh
+++ b/t/t1450-fsck.sh
@@ -263,6 +263,7 @@ done <<-\EOF
dot .
dotdot ..
dotgit .git
+dotgit-case .GIT
EOF
test_done