From b52a650cbcfb5fa2bef40acaff2ea666be3f3d09 Mon Sep 17 00:00:00 2001 From: Ted Lemon Date: Mon, 2 Jun 1997 22:31:30 +0000 Subject: [PATCH] Don't select for exceptions, since we don't know how to handle them. --- common/dispatch.c | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/dispatch.c b/common/dispatch.c index 8a66af03c..4a669a079 100644 --- a/common/dispatch.c +++ b/common/dispatch.c @@ -42,7 +42,7 @@ #ifndef lint static char copyright[] = -"$Id: dispatch.c,v 1.41 1997/05/09 08:00:50 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; +"$Id: dispatch.c,v 1.42 1997/06/02 22:31:30 mellon Exp $ Copyright (c) 1995, 1996 The Internet Software Consortium. All rights reserved.\n"; #endif /* not lint */ #include "dhcpd.h" @@ -516,7 +516,6 @@ void dispatch () for (l = protocols; l; l = l -> next) { FD_SET (l -> fd, &r); - FD_SET (l -> fd, &x); if (l -> fd > max) max = l -> fd; } -- 2.47.3