From: Ted Lemon Date: Mon, 2 Jun 1997 22:31:30 +0000 (+0000) Subject: Don't select for exceptions, since we don't know how to handle them. X-Git-Tag: DHCP-970602~31 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=b52a650cbcfb5fa2bef40acaff2ea666be3f3d09;p=thirdparty%2Fdhcp.git Don't select for exceptions, since we don't know how to handle them. --- 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; }