diff options
author | rik <rik@FreeBSD.org> | 2008-09-20 16:46:19 +0000 |
---|---|---|
committer | rik <rik@FreeBSD.org> | 2008-09-20 16:46:19 +0000 |
commit | 87be3efbcd3d507eb8b5073e5b30286f109f64a2 (patch) | |
tree | 48a808972fceb2a01242988e88c3d53faee51bcc /sbin | |
parent | a14fe071844a5dbc5d5efd52546b7df8b94f9e16 (diff) | |
download | FreeBSD-src-87be3efbcd3d507eb8b5073e5b30286f109f64a2.zip FreeBSD-src-87be3efbcd3d507eb8b5073e5b30286f109f64a2.tar.gz |
Remove some unused variables.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/ipfw/ipfw2.c | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/sbin/ipfw/ipfw2.c b/sbin/ipfw/ipfw2.c index 2ceb0c5..50ee754 100644 --- a/sbin/ipfw/ipfw2.c +++ b/sbin/ipfw/ipfw2.c @@ -3569,7 +3569,7 @@ setup_redir_addr(char *spool_buf, int len, char **av, *sep; /* Token separator. */ /* Temporary buffer used to hold server pool ip's. */ char tmp_spool_buf[NAT_BUF_LEN]; - int ac, i, space, lsnat; + int ac, space, lsnat; struct cfg_redir *r; struct cfg_spool *tmp; @@ -3788,7 +3788,7 @@ setup_redir_proto(char *spool_buf, int len, int *_ac, char ***_av) { char **av; - int ac, i, space; + int ac, space; struct protoent *protoent; struct cfg_redir *r; @@ -3975,7 +3975,6 @@ static void config_nat(int ac, char **av) { struct cfg_nat *n; /* Nat instance configuration. */ - struct in_addr ip; int i, len, off, tok; char *id, buf[NAT_BUF_LEN]; /* Buffer for serialized data. */ @@ -5978,7 +5977,7 @@ show_nat(int ac, char **av) int cmd, i, nbytes, do_cfg, do_rule, frule, lrule, nalloc, size; int nat_cnt, redir_cnt, r; uint8_t *data, *p; - char **lav, *endptr; + char *endptr; do_rule = 0; nalloc = 1024; |