diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2011-03-26 16:04:24 +0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-03-28 17:01:15 -0700 |
commit | 9b125da490990ae4d08dd1517dc38b188b874fa8 (patch) | |
tree | 1da0d8359926faf97b67946095f5e5e9937186cc /dir.h | |
parent | 78bc46675353e4833a59e0f4dfa47d57a9c1a46b (diff) | |
download | git-9b125da490990ae4d08dd1517dc38b188b874fa8.tar.gz git-9b125da490990ae4d08dd1517dc38b188b874fa8.tar.xz |
setup: return correct prefix if worktree is '/'
The same old problem reappears after setup code is reworked. We tend
to assume there is at least one path component in a path and forget
that path can be simply '/'.
Reported-by: Matthijs Kooijman <matthijs@stdin.nl>
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'dir.h')
-rw-r--r-- | dir.h | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -83,6 +83,7 @@ extern int file_exists(const char *); extern char *get_relative_cwd(char *buffer, int size, const char *dir); extern int is_inside_dir(const char *dir); +extern int dir_inside_of(const char *subdir, const char *dir); static inline int is_dot_or_dotdot(const char *name) { |