summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--usr.sbin/routed/inet.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/routed/inet.c b/usr.sbin/routed/inet.c
index 925472c..9b1c9fd 100644
--- a/usr.sbin/routed/inet.c
+++ b/usr.sbin/routed/inet.c
@@ -143,13 +143,13 @@ inet_maskof(inaddr)
} else if (IN_CLASSA(i)) {
mask = IN_CLASSA_NET;
} else if (IN_CLASSB(i)) {
- mask = i & IN_CLASSB_NET;
+ mask = IN_CLASSB_NET;
} else
- mask = i & IN_CLASSC_NET;
+ mask = IN_CLASSC_NET;
/*
- * Check whether network is a subnet;
- * if so, use the modified interpretation of `host'.
+ * Check whether network is subnetted;
+ * if so, use the subnet's netmask.
*/
for (ifp = ifnet; ifp; ifp = ifp->int_next)
if ((ifp->int_netmask & i) == ifp->int_net)
OpenPOWER on IntegriCloud