Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNguyễn Thái Ngọc Duy <pclouds@gmail.com>2010-02-16 08:22:08 +0300
committerJunio C Hamano <gitster@pobox.com>2010-02-16 19:54:34 +0300
commit4bb43de25977063187dedf054122985bc5a2660e (patch)
tree7e8f344d6ae53bdfd281ba32c12143bd7b07ac51 /sha1_file.c
parentd06f15d9c0c2b072e5eebf87fa93ee9a899ed642 (diff)
Move offset_1st_component() to path.c
The implementation is also lightly modified to use is_dir_sep() instead of hardcoding '/'. 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 'sha1_file.c')
-rw-r--r--sha1_file.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/sha1_file.c b/sha1_file.c
index 23d347c45f..923d9d1cd1 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -83,13 +83,6 @@ int get_sha1_hex(const char *hex, unsigned char *sha1)
return 0;
}
-static inline int offset_1st_component(const char *path)
-{
- if (has_dos_drive_prefix(path))
- return 2 + (path[2] == '/');
- return *path == '/';
-}
-
int safe_create_leading_directories(char *path)
{
char *pos = path + offset_1st_component(path);