Killed a couple of unused variables.
We really should compile with warnings enabled.
This commit is contained in:
parent
d83faf8dc4
commit
6a57bb3110
3 changed files with 3 additions and 4 deletions
|
@ -294,7 +294,7 @@ interpret(struct f_inst *what)
|
|||
{
|
||||
struct symbol *sym;
|
||||
struct f_val v1, v2, res;
|
||||
int i,j,k;
|
||||
int i;
|
||||
|
||||
res.type = T_VOID;
|
||||
if (!what)
|
||||
|
|
|
@ -373,7 +373,6 @@ static int
|
|||
bgp_incoming_connection(sock *sk, int dummy)
|
||||
{
|
||||
struct proto_config *pc;
|
||||
node *n;
|
||||
int match = 0;
|
||||
|
||||
DBG("BGP: Incoming connection from %I port %d\n", sk->daddr, sk->dport);
|
||||
|
|
|
@ -384,7 +384,7 @@ static int
|
|||
rip_process_packet( struct proto *p, struct rip_packet *packet, int num, ip_addr whotoldme, int port )
|
||||
{
|
||||
int i;
|
||||
int native_class = 0, authenticated = 0;
|
||||
int authenticated = 0;
|
||||
neighbor *neighbor;
|
||||
|
||||
switch( packet->heading.version ) {
|
||||
|
@ -606,7 +606,7 @@ static void
|
|||
rip_dump(struct proto *p)
|
||||
{
|
||||
int i;
|
||||
node *w, *e;
|
||||
node *w;
|
||||
struct rip_interface *rif;
|
||||
i = 0;
|
||||
|
||||
|
|
Loading…
Reference in a new issue