diff options
| author | Edward Thomson <ethomson@microsoft.com> | 2015-02-03 12:16:11 -0500 |
|---|---|---|
| committer | Edward Thomson <ethomson@microsoft.com> | 2015-02-03 12:23:04 -0500 |
| commit | 5f28ec84a10b283f79f027f83ba03d7774a987f7 (patch) | |
| tree | 24c984e209167b7b9b09cdd950aa7a0ca939e951 /src/repository.c | |
| parent | 9dcc4a36f709f013ed111924754021fddfc933e6 (diff) | |
| download | libgit2-5f28ec84a10b283f79f027f83ba03d7774a987f7.tar.gz | |
win32: cleanup 8.3 disabled tests
Diffstat (limited to 'src/repository.c')
| -rw-r--r-- | src/repository.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/repository.c b/src/repository.c index f338af76c..433754489 100644 --- a/src/repository.c +++ b/src/repository.c @@ -808,7 +808,8 @@ const char *git_repository__8dot3_name(git_repository *repo) /* We anticipate the 8.3 name is "GIT~1", so use a static for * easy testing in the common case */ - if (repo->name_8dot3 && strcasecmp(repo->name_8dot3, git_repository__8dot3_default) == 0) + if (repo->name_8dot3 && + strcasecmp(repo->name_8dot3, git_repository__8dot3_default) == 0) repo->has_8dot3_default = 1; } #endif |
