From 2e6239dd064d201c6e1b0f589bae9ff27949d2eb Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Sat, 19 Feb 2011 09:34:28 -0500 Subject: fix major bug created from copying mkdtemp logic --- src/temp/mkstemp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/temp/mkstemp.c b/src/temp/mkstemp.c index 2ab3020b..20019ed9 100644 --- a/src/temp/mkstemp.c +++ b/src/temp/mkstemp.c @@ -13,7 +13,7 @@ int mkstemp(char *template) { int fd, retries = 100; while (retries--) { - if (!__mktemp(template)) return 0; + if (!__mktemp(template)) return -1; if ((fd = open(template, O_RDWR | O_CREAT | O_EXCL, 0600))>=0) return fd; if (errno != EEXIST) return -1; -- cgit v1.2.1