diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 19:02:39 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2004-09-15 19:02:39 +0000 |
commit | 10dce516a5e4ba4ff7658bf3267d4857dd919aa4 (patch) | |
tree | ffe031ac6aeb18b4c9b12be65cce7e4fc5f59878 /sbin/dhclient/conflex.c | |
parent | 8abb775e8094d66d873a91fca7a6009e2a19e92f (diff) |
variable set but not used
Diffstat (limited to 'sbin/dhclient/conflex.c')
-rw-r--r-- | sbin/dhclient/conflex.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sbin/dhclient/conflex.c b/sbin/dhclient/conflex.c index ca9c65c8f0f..ee96bfeb9ca 100644 --- a/sbin/dhclient/conflex.c +++ b/sbin/dhclient/conflex.c @@ -1,4 +1,4 @@ -/* $OpenBSD: conflex.c,v 1.6 2004/02/24 13:08:26 henning Exp $ */ +/* $OpenBSD: conflex.c,v 1.7 2004/09/15 19:02:38 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); |