summaryrefslogtreecommitdiff
path: root/usr.sbin/dhcpd/conflex.c
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>2004-09-16 18:35:44 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>2004-09-16 18:35:44 +0000
commite079edd2e9335fd24f8f6b8a69a82f9abdcf8332 (patch)
treeb94b092ed2307c805328cd2bf70b3c136f0ad696 /usr.sbin/dhcpd/conflex.c
parenta91fce241ec0acb77eeb44fdb6a2c82f6498e116 (diff)
avoid aliasing with libc functions; ok henning
Diffstat (limited to 'usr.sbin/dhcpd/conflex.c')
-rw-r--r--usr.sbin/dhcpd/conflex.c5
1 files changed, 2 insertions, 3 deletions
diff --git a/usr.sbin/dhcpd/conflex.c b/usr.sbin/dhcpd/conflex.c
index 2ea3289529e..798badf9d60 100644
--- a/usr.sbin/dhcpd/conflex.c
+++ b/usr.sbin/dhcpd/conflex.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: conflex.c,v 1.3 2004/04/14 00:56:02 henning Exp $ */
+/* $OpenBSD: conflex.c,v 1.4 2004/09/16 18:35:42 deraadt Exp $ */
/* Lexical scanner for dhcpd config file... */
@@ -117,12 +117,11 @@ get_token(FILE *cfile)
{
int c, ttok;
static char tb[2];
- int l, p, u;
+ int l, p;
do {
l = line;
p = lpos;
- u = ugflag;
c = get_char(cfile);