Revision 325602ce120e7bd7321b9ed409b49b48fd20888e authored by Junio C Hamano on 07 October 2014, 20:41:03 UTC, committed by Junio C Hamano on 07 October 2014, 20:41:03 UTC
* maint:
  git-tag.txt: Add a missing hyphen to `-s`
2 parent s 565301e + 3c2dc76
Raw File
mkdtemp.c
#include "../git-compat-util.h"

char *gitmkdtemp(char *template)
{
	if (!*mktemp(template) || mkdir(template, 0700))
		return NULL;
	return template;
}
back to top