From 34de5e4bb0dfe1c05b57c733c2196f1ad3881a98 Mon Sep 17 00:00:00 2001 From: Ramsay Jones Date: Tue, 28 Feb 2017 01:24:10 +0000 Subject: wrapper.c: remove unused git_mkstemp() function The last caller of git_mkstemp() was removed in commit 6fec0a89 ("verify_signed_buffer: use tempfile object", 16-06-2016). Since the introduction of the 'tempfile' APIs, along with git_mkstemp_mode, it is unlikely that new callers will materialize. Remove the dead code. Signed-off-by: Ramsay Jones Reviewed-by: Jeff King Signed-off-by: Junio C Hamano --- wrapper.c | 17 ----------------- 1 file changed, 17 deletions(-) (limited to 'wrapper.c') diff --git a/wrapper.c b/wrapper.c index e7f197996..1a140639f 100644 --- a/wrapper.c +++ b/wrapper.c @@ -440,23 +440,6 @@ int xmkstemp(char *template) return fd; } -/* git_mkstemp() - create tmp file honoring TMPDIR variable */ -int git_mkstemp(char *path, size_t len, const char *template) -{ - const char *tmp; - size_t n; - - tmp = getenv("TMPDIR"); - if (!tmp) - tmp = "/tmp"; - n = snprintf(path, len, "%s/%s", tmp, template); - if (len <= n) { - errno = ENAMETOOLONG; - return -1; - } - return mkstemp(path); -} - /* Adapted from libiberty's mkstemp.c. */ #undef TMP_MAX -- cgit v1.2.1