X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=path.c;h=7ef0d1b80d926d832816a587ddff721cb03130b3;hb=d59a6043a8a7aed97c684fb4f14fe5221df1fcaf;hp=d217ef0b7f04d7e021770cb50a7c58c14bc7920d;hpb=89ab859e9452cbc8f1f15afab52257e9b789c899;p=git.git diff --git a/path.c b/path.c index d217ef0b..7ef0d1b8 100644 --- a/path.c +++ b/path.c @@ -58,3 +58,29 @@ char *git_path(const char *fmt, ...) return bad_path; return cleanup_path(pathname); } + + +/* git_mkstemp() - create tmp file honoring TMPDIR variable */ +int git_mkstemp(char *path, size_t len, const char *template) +{ + char *env, *pch = path; + + if ((env = getenv("TMPDIR")) == NULL) { + strcpy(pch, "/tmp/"); + len -= 5; + } else + len -= snprintf(pch, len, "%s/", env); + + safe_strncpy(pch, template, len); + + return mkstemp(path); +} + + +char *safe_strncpy(char *dest, const char *src, size_t n) +{ + strncpy(dest, src, n); + dest[n - 1] = '\0'; + + return dest; +}