summaryrefslogtreecommitdiff
path: root/usr.bin/top
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/top')
-rw-r--r--usr.bin/top/display.c4
-rw-r--r--usr.bin/top/top.c8
2 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/top/display.c b/usr.bin/top/display.c
index 243fdc6af4f..f5d1e289c77 100644
--- a/usr.bin/top/display.c
+++ b/usr.bin/top/display.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: display.c,v 1.18 2004/06/13 18:49:02 otto Exp $ */
+/* $OpenBSD: display.c,v 1.19 2005/04/13 02:33:09 deraadt Exp $ */
/*
* Top users/processes display for Unix
@@ -764,7 +764,7 @@ readline(char *buffer, int size, int numeric)
size -= 1;
/* read loop */
- while ((fflush(stdout), (len = read(0, ptr, 1)) > 0)) {
+ while ((fflush(stdout), (len = read(STDIN_FILENO, ptr, 1)) > 0)) {
if (len == 0 || leaveflag) {
end_screen();
diff --git a/usr.bin/top/top.c b/usr.bin/top/top.c
index b53d0e1cda5..54d2ecbe36c 100644
--- a/usr.bin/top/top.c
+++ b/usr.bin/top/top.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: top.c,v 1.35 2004/10/07 06:26:12 otto Exp $ */
+/* $OpenBSD: top.c,v 1.36 2005/04/13 02:33:09 deraadt Exp $ */
/*
* Top users/processes display for Unix
@@ -593,7 +593,7 @@ rundisplay(void)
* command strchr
*/
while (1) {
- len = read(0, &ch, 1);
+ len = read(STDIN_FILENO, &ch, 1);
if (len == -1 && errno == EINTR)
continue;
if (len == 0)
@@ -650,7 +650,7 @@ rundisplay(void)
standout("Hit any key to continue: ");
fflush(stdout);
while (1) {
- len = read(0, &ch, 1);
+ len = read(STDIN_FILENO, &ch, 1);
if (len == -1 && errno == EINTR)
continue;
if (len == 0)
@@ -673,7 +673,7 @@ rundisplay(void)
standout("Hit any key to continue: ");
fflush(stdout);
while (1) {
- len = read(0, &ch, 1);
+ len = read(STDIN_FILENO, &ch, 1);
if (len == -1 && errno == EINTR)
continue;
if (len == 0)