diff options
author | 2012-08-18 00:23:30 +0000 | |
---|---|---|
committer | 2012-08-18 00:23:30 +0000 | |
commit | 68c0358b812089c6486c56cf232f25ab7fe623ad (patch) | |
tree | 4b67e519d3258d1943bf4a186cd7a115fbb02644 | |
parent | Update global cur_time after exiting poll() and before calling the (diff) | |
download | wireguard-openbsd-68c0358b812089c6486c56cf232f25ab7fe623ad.tar.xz wireguard-openbsd-68c0358b812089c6486c56cf232f25ab7fe623ad.zip |
Remove unused field 'next' from struct timeout. There's only one
timeout now, not a list.
-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 13968245cbd..3e314a771cd 100644 --- a/sbin/dhclient/dhcpd.h +++ b/sbin/dhclient/dhcpd.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dhcpd.h,v 1.76 2012/07/09 16:21:21 krw Exp $ */ +/* $OpenBSD: dhcpd.h,v 1.77 2012/08/18 00:23:30 krw Exp $ */ /* * Copyright (c) 2004 Henning Brauer <henning@openbsd.org> @@ -190,7 +190,6 @@ struct interface_info { }; struct timeout { - struct timeout *next; time_t when; void (*func)(void); }; |