summaryrefslogtreecommitdiffstats
path: root/tcpip
diff options
context:
space:
mode:
Diffstat (limited to 'tcpip')
-rw-r--r--tcpip/rip98r.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/tcpip/rip98r.c b/tcpip/rip98r.c
index 8332944..2993666 100644
--- a/tcpip/rip98r.c
+++ b/tcpip/rip98r.c
@@ -23,8 +23,8 @@
static int cmp_route(struct route_struct *route, struct in_addr addr, int bits, int metric)
{
- unsigned long int old_mask, new_mask;
- unsigned long int old_addr, new_addr;
+ unsigned int old_mask, new_mask;
+ unsigned int old_addr, new_addr;
old_mask = bits2mask(route->bits);
new_mask = bits2mask(bits);