summaryrefslogtreecommitdiffstats
path: root/usr.sbin/dhcpd/tree.h
diff options
context:
space:
mode:
authorhenning <henning@openbsd.org>2004-04-13 23:57:49 +0000
committerhenning <henning@openbsd.org>2004-04-13 23:57:49 +0000
commitfbc5e94d8e89368e1afcbe0575f803f735886ea0 (patch)
treee52147dc244c045b5293ccede5d66bd49e2aa4e5 /usr.sbin/dhcpd/tree.h
parentmay the whacking begin (diff)
downloadwireguard-openbsd-fbc5e94d8e89368e1afcbe0575f803f735886ea0.tar.xz
wireguard-openbsd-fbc5e94d8e89368e1afcbe0575f803f735886ea0.zip
time_t and kill a few dumb defines
Diffstat (limited to 'usr.sbin/dhcpd/tree.h')
-rw-r--r--usr.sbin/dhcpd/tree.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/dhcpd/tree.h b/usr.sbin/dhcpd/tree.h
index c2df41f52b1..73956be528c 100644
--- a/usr.sbin/dhcpd/tree.h
+++ b/usr.sbin/dhcpd/tree.h
@@ -79,14 +79,14 @@ struct dns_host_entry {
unsigned char *data;
int data_len;
int buf_len;
- TIME timeout;
+ time_t timeout;
};
struct tree_cache {
unsigned char *value;
int len;
int buf_size;
- TIME timeout;
+ time_t timeout;
struct tree *tree;
int flags;
#define TC_AWAITING_RESOLUTION 1