diff options
author | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-12-18 14:17:59 +0000 |
---|---|---|
committer | Kenneth R Westerback <krw@cvs.openbsd.org> | 2017-12-18 14:17:59 +0000 |
commit | de4383743e61dea60485964b7c20b7b2ac8bde3f (patch) | |
tree | da688db55a06cdf2b64db4a44adb4388e8445026 /sbin/dhclient/dhcpd.h | |
parent | 562ae98ff9402086bf3301767cf4b0b0047f47b2 (diff) |
Stop inserting and paying attention to 'interface <if>;'
inside 'lease {}' declarations. We don't keep leases from
multiple interfaces in dhclient.leases.<if> files.
One less thing to parse and keep in memory. More rope for
those wanting to do unspeakable things with their lease files.
Diffstat (limited to 'sbin/dhclient/dhcpd.h')
-rw-r--r-- | sbin/dhclient/dhcpd.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sbin/dhclient/dhcpd.h b/sbin/dhclient/dhcpd.h index 2cd04e1bf7b..19782e52554 100644 --- a/sbin/dhclient/dhcpd.h +++ b/sbin/dhclient/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.242 2017/12/16 20:47:53 krw Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.243 2017/12/18 14:17:58 krw Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@openbsd.org> @@ -56,7 +56,6 @@ struct reject_elem { struct client_lease { TAILQ_ENTRY(client_lease) next; - char *interface; time_t epoch; struct in_addr address; struct in_addr next_server; |