diff --git a/proto/rip/rip.c b/proto/rip/rip.c index 7268383c..d8058b8d 100644 --- a/proto/rip/rip.c +++ b/proto/rip/rip.c @@ -353,7 +353,11 @@ advertise_entry( struct proto *p, struct rip_block *b, ip_addr whotoldme ) static void process_block( struct proto *p, struct rip_block *block, ip_addr whotoldme ) { +#ifndef IPV6 int metric = ntohl( block->metric ); +#else + int metric = block->metric; +#endif ip_addr network = block->network; CHK_MAGIC;