forked from xiaolai/git
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
compat: some mkdir() do not like a slash at the end
Introduce a compatibility helper for platforms with such a mkdir(). Signed-off-by: Joachim Schmitz <[email protected]> Signed-off-by: Junio C Hamano <[email protected]>
- Loading branch information
1 parent
fab4b04
commit 0539ecf
Showing
2 changed files
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
#include "../git-compat-util.h" | ||
#undef mkdir | ||
|
||
/* for platforms that can't deal with a trailing '/' */ | ||
int compat_mkdir_wo_trailing_slash(const char *dir, mode_t mode) | ||
{ | ||
int retval; | ||
char *tmp_dir = NULL; | ||
size_t len = strlen(dir); | ||
|
||
if (len && dir[len-1] == '/') { | ||
if ((tmp_dir = strdup(dir)) == NULL) | ||
return -1; | ||
tmp_dir[len-1] = '\0'; | ||
} | ||
else | ||
tmp_dir = (char *)dir; | ||
|
||
retval = mkdir(tmp_dir, mode); | ||
if (tmp_dir != dir) | ||
free(tmp_dir); | ||
|
||
return retval; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters