diff options
author | Linquize <linquize@yahoo.com.hk> | 2015-07-01 14:58:13 +0800 |
---|---|---|
committer | Linquize <linquize@yahoo.com.hk> | 2015-07-01 14:58:13 +0800 |
commit | 526f91f5525707b2a948e6ff5a59665d92370cab (patch) | |
tree | 26251424b2b22481ffe8289f88459961c49b82ac | |
parent | aa92c318a235cc6a5230682b9c071eb35f9c5f4c (diff) | |
download | libgit2-526f91f5525707b2a948e6ff5a59665d92370cab.tar.gz |
Fix 8.3 filename tests failure when 8.3 is disabled
-rw-r--r-- | src/repository.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/repository.c b/src/repository.c index 82d998124..08f4baa20 100644 --- a/src/repository.c +++ b/src/repository.c @@ -867,7 +867,9 @@ static int reserved_names_add8dot3(git_repository *repo, const char *path) { char *name = git_win32_path_8dot3_name(path); const char *def = GIT_DIR_SHORTNAME; + const char *def_dot_git = DOT_GIT; size_t name_len, def_len = CONST_STRLEN(GIT_DIR_SHORTNAME); + size_t def_dot_git_len = CONST_STRLEN(DOT_GIT); git_buf *buf; if (!name) @@ -875,7 +877,8 @@ static int reserved_names_add8dot3(git_repository *repo, const char *path) name_len = strlen(name); - if (name_len == def_len && memcmp(name, def, def_len) == 0) { + if ((name_len == def_len && memcmp(name, def, def_len) == 0) || + (name_len == def_dot_git_len && memcmp(name, def_dot_git, def_dot_git_len) == 0)) { git__free(name); return 0; } |