diff options
author | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-02 15:02:45 +0100 |
---|---|---|
committer | Denys Vlasenko <vda.linux@googlemail.com> | 2010-03-02 15:02:45 +0100 |
commit | 88aa558e5cf31d1b390d68fc40f55b47beac246e (patch) | |
tree | e852c4b98e2f849fea60507363c22b39549d7601 /util-linux/script.c | |
parent | d2f77796711f55240d4a88c92ea8c6545baeee98 (diff) | |
download | busybox-w32-88aa558e5cf31d1b390d68fc40f55b47beac246e.tar.gz busybox-w32-88aa558e5cf31d1b390d68fc40f55b47beac246e.tar.bz2 busybox-w32-88aa558e5cf31d1b390d68fc40f55b47beac246e.zip |
*: do not check for POLLIN/POLLOUT only, just in case it's POLHUP/POLERR
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'util-linux/script.c')
-rw-r--r-- | util-linux/script.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util-linux/script.c b/util-linux/script.c index 37213eec8..d9a62fbfe 100644 --- a/util-linux/script.c +++ b/util-linux/script.c | |||
@@ -119,7 +119,7 @@ int script_main(int argc UNUSED_PARAM, char **argv) | |||
119 | * for example, try "script -c true" */ | 119 | * for example, try "script -c true" */ |
120 | break; | 120 | break; |
121 | } | 121 | } |
122 | if (pfd[0].revents & POLLIN) { | 122 | if (pfd[0].revents) { |
123 | errno = 0; | 123 | errno = 0; |
124 | count = safe_read(pty, buf, sizeof(buf)); | 124 | count = safe_read(pty, buf, sizeof(buf)); |
125 | if (count <= 0 && errno != EAGAIN) { | 125 | if (count <= 0 && errno != EAGAIN) { |
@@ -143,7 +143,7 @@ int script_main(int argc UNUSED_PARAM, char **argv) | |||
143 | } | 143 | } |
144 | } | 144 | } |
145 | } | 145 | } |
146 | if (pfd[1].revents & POLLIN) { | 146 | if (pfd[1].revents) { |
147 | count = safe_read(STDIN_FILENO, buf, sizeof(buf)); | 147 | count = safe_read(STDIN_FILENO, buf, sizeof(buf)); |
148 | if (count <= 0) { | 148 | if (count <= 0) { |
149 | /* err/eof from stdin: don't read stdin anymore */ | 149 | /* err/eof from stdin: don't read stdin anymore */ |