Skip to content

Commit

Permalink
Move offset_1st_component() to path.c
Browse files Browse the repository at this point in the history
The implementation is also lightly modified to use is_dir_sep()
instead of hardcoding '/'.

Signed-off-by: Nguyễn Thái Ngọc Duy <[email protected]>
Signed-off-by: Junio C Hamano <[email protected]>
  • Loading branch information
pclouds authored and gitster committed Feb 16, 2010
1 parent d06f15d commit 4bb43de
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 7 deletions.
1 change: 1 addition & 0 deletions cache.h
Original file line number Diff line number Diff line change
Expand Up @@ -664,6 +664,7 @@ int normalize_path_copy(char *dst, const char *src);
int longest_ancestor_length(const char *path, const char *prefix_list);
char *strip_path_suffix(const char *path, const char *suffix);
int daemon_avoid_alias(const char *path);
int offset_1st_component(const char *path);

/* Read and unpack a sha1 file into memory, write memory to a sha1 file */
extern int sha1_object_info(const unsigned char *, unsigned long *);
Expand Down
7 changes: 7 additions & 0 deletions path.c
Original file line number Diff line number Diff line change
Expand Up @@ -649,3 +649,10 @@ int daemon_avoid_alias(const char *p)
}
}
}

int offset_1st_component(const char *path)
{
if (has_dos_drive_prefix(path))
return 2 + is_dir_sep(path[2]);
return is_dir_sep(path[0]);
}
7 changes: 0 additions & 7 deletions sha1_file.c
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 4bb43de

Please sign in to comment.