aboutsummaryrefslogtreecommitdiff
path: root/shell
diff options
context:
space:
mode:
Diffstat (limited to 'shell')
-rw-r--r--shell/ash.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c
index 921367be5..28a8bb60c 100644
--- a/shell/ash.c
+++ b/shell/ash.c
@@ -4989,9 +4989,13 @@ noclobberopen(const char *fname)
4989 * revealed that it was a regular file, and the file has not been 4989 * revealed that it was a regular file, and the file has not been
4990 * replaced, return the file descriptor. 4990 * replaced, return the file descriptor.
4991 */ 4991 */
4992 if (fstat(fd, &finfo2) == 0 && !S_ISREG(finfo2.st_mode) 4992 if (fstat(fd, &finfo2) == 0
4993 && finfo.st_dev == finfo2.st_dev && finfo.st_ino == finfo2.st_ino) 4993 && !S_ISREG(finfo2.st_mode)
4994 && finfo.st_dev == finfo2.st_dev
4995 && finfo.st_ino == finfo2.st_ino
4996 ) {
4994 return fd; 4997 return fd;
4998 }
4995 4999
4996 /* The file has been replaced. badness. */ 5000 /* The file has been replaced. badness. */
4997 close(fd); 5001 close(fd);