summaryrefslogtreecommitdiffstats
path: root/usr.sbin/ypldap
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/ypldap')
-rw-r--r--usr.sbin/ypldap/yp.c9
1 files changed, 4 insertions, 5 deletions
diff --git a/usr.sbin/ypldap/yp.c b/usr.sbin/ypldap/yp.c
index 01d9d23..e461136 100644
--- a/usr.sbin/ypldap/yp.c
+++ b/usr.sbin/ypldap/yp.c
@@ -82,13 +82,12 @@ yp_disable_events(void)
void
yp_enable_events(void)
{
- int i;
- extern fd_set *__svc_fdset;
- extern int __svc_fdsetsize;
+ int i;
+ extern fd_set svc_fdset;
struct yp_event *ye;
- for (i = 0; i < __svc_fdsetsize; i++) {
- if (FD_ISSET(i, __svc_fdset)) {
+ for (i = 0; i < getdtablesize(); i++) {
+ if (FD_ISSET(i, &svc_fdset)) {
if ((ye = calloc(1, sizeof(*ye))) == NULL)
fatal(NULL);
event_set(&ye->ye_event, i, EV_READ, yp_fd_event, NULL);
OpenPOWER on IntegriCloud