summaryrefslogtreecommitdiff
path: root/common/dispatch.c
diff options
context:
space:
mode:
authorTed Lemon <source@isc.org>1997-06-02 22:31:30 +0000
committerTed Lemon <source@isc.org>1997-06-02 22:31:30 +0000
commitb52a650cbcfb5fa2bef40acaff2ea666be3f3d09 (patch)
tree75ca2544f9fa7bb33509ad7cbf65ddfb20ab0f48 /common/dispatch.c
parent36f5381c14abf8d6201e1b754cfb4fa18b9df6b8 (diff)
downloadisc-dhcp-b52a650cbcfb5fa2bef40acaff2ea666be3f3d09.tar.gz
Don't select for exceptions, since we don't know how to handle them.
Diffstat (limited to 'common/dispatch.c')
-rw-r--r--common/dispatch.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/common/dispatch.c b/common/dispatch.c
index 8a66af03..4a669a07 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;
}