summaryrefslogtreecommitdiff
path: root/usr.sbin/dhcpd/tree.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.sbin/dhcpd/tree.c')
-rw-r--r--usr.sbin/dhcpd/tree.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/usr.sbin/dhcpd/tree.c b/usr.sbin/dhcpd/tree.c
index e8912ae63fe..cd69abd366f 100644
--- a/usr.sbin/dhcpd/tree.c
+++ b/usr.sbin/dhcpd/tree.c
@@ -42,9 +42,9 @@
#include "dhcpd.h"
-static TIME tree_evaluate_recurse PROTO ((int *, unsigned char **, int *,
+static time_t tree_evaluate_recurse PROTO ((int *, unsigned char **, int *,
struct tree *));
-static TIME do_host_lookup PROTO ((int *, unsigned char **, int *,
+static time_t do_host_lookup PROTO ((int *, unsigned char **, int *,
struct dns_host_entry *));
static void do_data_copy PROTO ((int *, unsigned char **, int *,
unsigned char *, int));
@@ -232,14 +232,14 @@ int tree_evaluate (tree_cache)
return 1;
}
-static TIME tree_evaluate_recurse (bufix, bufp, bufcount, tree)
+static time_t tree_evaluate_recurse (bufix, bufp, bufcount, tree)
int *bufix;
unsigned char **bufp;
int *bufcount;
struct tree *tree;
{
int limit;
- TIME t1, t2;
+ time_t t1, t2;
switch (tree -> op) {
case TREE_CONCAT:
@@ -276,7 +276,7 @@ static TIME tree_evaluate_recurse (bufix, bufp, bufcount, tree)
}
}
-static TIME do_host_lookup (bufix, bufp, bufcount, dns)
+static time_t do_host_lookup (bufix, bufp, bufcount, dns)
int *bufix;
unsigned char **bufp;
int *bufcount;