From 0539ecfdfce677b05992af5e9899a9e974130400 Mon Sep 17 00:00:00 2001 From: Joachim Schmitz Date: Fri, 24 Aug 2012 12:31:03 +0200 Subject: 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 Signed-off-by: Junio C Hamano --- compat/mkdir.c | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 compat/mkdir.c (limited to 'compat/mkdir.c') diff --git a/compat/mkdir.c b/compat/mkdir.c new file mode 100644 index 0000000000..9e253fb72f --- /dev/null +++ b/compat/mkdir.c @@ -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; +} -- cgit v1.2.1