diff options
Diffstat (limited to 'shell/ash.c')
-rw-r--r-- | shell/ash.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/shell/ash.c b/shell/ash.c index 9aec8ee0a..46f00dd3d 100644 --- a/shell/ash.c +++ b/shell/ash.c | |||
@@ -726,7 +726,7 @@ opentrace(void) | |||
726 | } | 726 | } |
727 | } | 727 | } |
728 | #ifdef O_APPEND | 728 | #ifdef O_APPEND |
729 | flags = fcntl(fileno(tracefile), F_GETFL, 0); | 729 | flags = fcntl(fileno(tracefile), F_GETFL); |
730 | if (flags >= 0) | 730 | if (flags >= 0) |
731 | fcntl(fileno(tracefile), F_SETFL, flags | O_APPEND); | 731 | fcntl(fileno(tracefile), F_SETFL, flags | O_APPEND); |
732 | #endif | 732 | #endif |
@@ -8565,7 +8565,7 @@ preadfd(void) | |||
8565 | 8565 | ||
8566 | if (nr < 0) { | 8566 | if (nr < 0) { |
8567 | if (parsefile->fd == 0 && errno == EWOULDBLOCK) { | 8567 | if (parsefile->fd == 0 && errno == EWOULDBLOCK) { |
8568 | int flags = fcntl(0, F_GETFL, 0); | 8568 | int flags = fcntl(0, F_GETFL); |
8569 | if (flags >= 0 && flags & O_NONBLOCK) { | 8569 | if (flags >= 0 && flags & O_NONBLOCK) { |
8570 | flags &=~ O_NONBLOCK; | 8570 | flags &=~ O_NONBLOCK; |
8571 | if (fcntl(0, F_SETFL, flags) >= 0) { | 8571 | if (fcntl(0, F_SETFL, flags) >= 0) { |