|
|
@ -13,7 +13,7 @@ int mkstemp(char *template) |
|
|
{ |
|
|
{ |
|
|
int fd, retries = 100; |
|
|
int fd, retries = 100; |
|
|
while (retries--) { |
|
|
while (retries--) { |
|
|
if (!__mktemp(template)) return 0; |
|
|
if (!__mktemp(template)) return -1; |
|
|
if ((fd = open(template, O_RDWR | O_CREAT | O_EXCL, 0600))>=0) |
|
|
if ((fd = open(template, O_RDWR | O_CREAT | O_EXCL, 0600))>=0) |
|
|
return fd; |
|
|
return fd; |
|
|
if (errno != EEXIST) return -1; |
|
|
if (errno != EEXIST) return -1; |
|
|
|