merge from gcc

This commit is contained in:
DJ Delorie 2008-07-31 22:01:30 +00:00
parent f562800dc4
commit 8975bb3072
2 changed files with 9 additions and 1 deletions

View file

@ -127,7 +127,11 @@ mkstemps (char *pattern, int suffix_len)
if (fd >= 0)
/* The file does not exist. */
return fd;
if (errno != EEXIST)
if (errno != EEXIST
#ifdef EISDIR
&& errno != EISDIR
#endif
)
/* Fatal error (EPERM, ENOSPC etc). Doesn't make sense to loop. */
break;