You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
#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;
|
|
|
|
}
|