diff options
author | Junio C Hamano <gitster@pobox.com> | 2009-02-10 21:30:52 -0800 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-10 21:30:52 -0800 |
commit | 6e5d7ddc490fc7fdf46a5d0af35aa6fd64ae4a96 (patch) | |
tree | a145bfaa00806f84c982c0c4394eb9b8c002db8b /cache.h | |
parent | fd8475d9fb76fbc435ba5dc5b7e97b0cad92661d (diff) | |
parent | f2a782b8ba189b5ed51d18aa3eb93a670c220018 (diff) | |
download | git-6e5d7ddc490fc7fdf46a5d0af35aa6fd64ae4a96.tar.gz git-6e5d7ddc490fc7fdf46a5d0af35aa6fd64ae4a96.tar.xz |
Merge branch 'js/maint-1.6.0-path-normalize'
* js/maint-1.6.0-path-normalize:
Remove unused normalize_absolute_path()
Test and fix normalize_path_copy()
Fix GIT_CEILING_DIRECTORIES on Windows
Move sanitary_path_copy() to path.c and rename it to normalize_path_copy()
Make test-path-utils more robust against incorrect use
Diffstat (limited to 'cache.h')
-rw-r--r-- | cache.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -627,7 +627,7 @@ int is_directory(const char *); const char *make_absolute_path(const char *path); const char *make_nonrelative_path(const char *path); const char *make_relative_path(const char *abs, const char *base); -int normalize_absolute_path(char *buf, const char *path); +int normalize_path_copy(char *dst, const char *src); int longest_ancestor_length(const char *path, const char *prefix_list); /* Read and unpack a sha1 file into memory, write memory to a sha1 file */ |