diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-16 18:35:44 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-16 18:35:44 +0000 |
commit | e079edd2e9335fd24f8f6b8a69a82f9abdcf8332 (patch) | |
tree | b94b092ed2307c805328cd2bf70b3c136f0ad696 /usr.sbin/dhcpd/conflex.c | |
parent | a91fce241ec0acb77eeb44fdb6a2c82f6498e116 (diff) |
avoid aliasing with libc functions; ok henning
Diffstat (limited to 'usr.sbin/dhcpd/conflex.c')
-rw-r--r-- | usr.sbin/dhcpd/conflex.c | 5 |
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); |