diff options
| author | 2004-09-16 18:35:42 +0000 | |
|---|---|---|
| committer | 2004-09-16 18:35:42 +0000 | |
| commit | 0795b38919d5e1a9797bb5628fbd00cbe8824b7d (patch) | |
| tree | f73c46995a06a83b0a5501f0a8a7c9b62bdb339d /usr.sbin/dhcpd/tree.c | |
| parent | ftruncate() with ftello() instead of ftell(); ok millert (diff) | |
| download | wireguard-openbsd-0795b38919d5e1a9797bb5628fbd00cbe8824b7d.tar.xz wireguard-openbsd-0795b38919d5e1a9797bb5628fbd00cbe8824b7d.zip | |
avoid aliasing with libc functions; ok henning
Diffstat (limited to 'usr.sbin/dhcpd/tree.c')
| -rw-r--r-- | usr.sbin/dhcpd/tree.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.sbin/dhcpd/tree.c b/usr.sbin/dhcpd/tree.c index 11db0200549..138f767062a 100644 --- a/usr.sbin/dhcpd/tree.c +++ b/usr.sbin/dhcpd/tree.c @@ -1,4 +1,4 @@ -/* $OpenBSD: tree.c,v 1.9 2004/05/08 06:12:50 henning Exp $ */ +/* $OpenBSD: tree.c,v 1.10 2004/09/16 18:35:43 deraadt Exp $ */ /* Routines for manipulating parse trees... */ @@ -267,7 +267,7 @@ tree_evaluate_recurse(int *bufix, unsigned char **bufp, return t1; default: - warn("Bad node id in tree: %d.", tree->op); + warning("Bad node id in tree: %d.", tree->op); t1 = MAX_TIME; return t1; } |
