summaryrefslogtreecommitdiff
path: root/compat/mkdir.c
blob: 02aea3b32ef1e3c8944985edca52f3b0413e1739 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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)))
			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;
}