diff options
author | DJ Delorie <dj@redhat.com> | 2008-07-31 22:01:30 +0000 |
---|---|---|
committer | DJ Delorie <dj@redhat.com> | 2008-07-31 22:01:30 +0000 |
commit | 8975bb307270b579dfaeadc21389792021d7304c (patch) | |
tree | ecc11efbf3288087aa459cd9ebf5d970f2c27d77 /libiberty/mkstemps.c | |
parent | f562800dc425ea951fcde303518467c5424e3b18 (diff) | |
download | binutils-gdb-8975bb307270b579dfaeadc21389792021d7304c.tar.gz |
merge from gcc
Diffstat (limited to 'libiberty/mkstemps.c')
-rw-r--r-- | libiberty/mkstemps.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libiberty/mkstemps.c b/libiberty/mkstemps.c index 093b67af868..a0e68a73b49 100644 --- a/libiberty/mkstemps.c +++ b/libiberty/mkstemps.c @@ -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; |