diff options
author | Henning Brauer <henning@cvs.openbsd.org> | 2004-03-02 13:39:45 +0000 |
---|---|---|
committer | Henning Brauer <henning@cvs.openbsd.org> | 2004-03-02 13:39:45 +0000 |
commit | 7a9b441879fd00257df332e7146265949910d1d1 (patch) | |
tree | 1d04157ceaef3dff50161b2f10fbca0be5e7d4d7 /sbin/dhclient/dispatch.c | |
parent | 37f1db3223bd4f96d4482feb9f64510285e0e422 (diff) |
we deal with one interface at a time, so remove the interface list gunk.
Diffstat (limited to 'sbin/dhclient/dispatch.c')
-rw-r--r-- | sbin/dhclient/dispatch.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/dhclient/dispatch.c b/sbin/dhclient/dispatch.c index 1bdaa2530f6..b10b2715014 100644 --- a/sbin/dhclient/dispatch.c +++ b/sbin/dhclient/dispatch.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dispatch.c,v 1.20 2004/03/02 12:56:30 henning Exp $ */ +/* $OpenBSD: dispatch.c,v 1.21 2004/03/02 13:39:44 henning Exp $ */ /* * Copyright 2004 Henning Brauer <henning@openbsd.org> @@ -47,7 +47,6 @@ #include <ifaddrs.h> #include <poll.h> -struct interface_info *interfaces; struct protocol *protocols; struct timeout *timeouts; static struct timeout *free_timeouts; |