summaryrefslogtreecommitdiffstats
path: root/proto/rip
diff options
context:
space:
mode:
Diffstat (limited to 'proto/rip')
-rw-r--r--proto/rip/rip.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/proto/rip/rip.c b/proto/rip/rip.c
index 78eaa65..db84e87 100644
--- a/proto/rip/rip.c
+++ b/proto/rip/rip.c
@@ -318,10 +318,8 @@ rip_process_packet( struct proto *p, struct rip_packet *packet, int num, ip_addr
#ifndef IPV6
ipa_ntoh( block->netmask );
ipa_ntoh( block->nexthop );
- if (packet->heading.version == RIP_V1) {
- block->netmask = block->network; /* MJ: why are macros like this?! */
- ipa_class_mask( block->netmask );
- }
+ if (packet->heading.version == RIP_V1)
+ block->netmask = ipa_class_mask(block->network);
#endif
process_block( p, block, whotoldme );
}