Revision a56a7777bdf7a812fafb45663db26c5f4d988e52 authored by Junio C Hamano on 09 July 2019, 22:25:39 UTC, committed by Junio C Hamano on 09 July 2019, 22:25:39 UTC
Typofix.

* js/t3404-typofix:
  t3404: fix a typo
2 parent s 0af6d5d + cc8d872
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