aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/pppctl
diff options
context:
space:
mode:
authorBrian Somers <brian@FreeBSD.org>1997-11-11 13:27:47 +0000
committerBrian Somers <brian@FreeBSD.org>1997-11-11 13:27:47 +0000
commitd2bb1901e76c8070fbd8d60875b5dc590176622f (patch)
tree61416c853ffcab4adaf1bf47fbfe0dd22408280f /usr.sbin/pppctl
parent3d8ad715f4adb3b61d84da834622c84d6db77427 (diff)
Notes
Diffstat (limited to 'usr.sbin/pppctl')
-rw-r--r--usr.sbin/pppctl/pppctl.c14
1 files changed, 8 insertions, 6 deletions
diff --git a/usr.sbin/pppctl/pppctl.c b/usr.sbin/pppctl/pppctl.c
index e86033ca5e966..253983c832d00 100644
--- a/usr.sbin/pppctl/pppctl.c
+++ b/usr.sbin/pppctl/pppctl.c
@@ -6,12 +6,13 @@
#include <sys/un.h>
#include <netdb.h>
+#include <sys/time.h>
#include <histedit.h>
-#include <poll.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
+#include <time.h>
#include <unistd.h>
#define LINELEN 2048
@@ -135,13 +136,14 @@ static void
check_fd(int sig)
{
if (data != -1) {
- struct pollfd p;
+ struct timeval t;
+ fd_set f;
static char buf[LINELEN];
- p.fd = data;
- p.events = POLLIN|POLLPRI;
- p.revents = p.events|POLLOUT;
- if (poll(&p, 1, 0) > 0)
+ FD_ZERO(&f);
+ FD_SET(data, &f);
+ t.tv_sec = t.tv_usec = 0;
+ if (select(data+1, &f, NULL, NULL, &t) > 0)
write(1, buf, read(data, buf, sizeof buf));
}
}