Commit 92f8f7e3 authored by Ondrej Filip's avatar Ondrej Filip
Browse files

Small bug in detection of class-A networks.

parent cca97066
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ ipv4_class_mask(u32 a)

	if (a < 0x80000000)
		m = 0xff000000;
	if (a < 0xc0000000)
	else if (a < 0xc0000000)
		m = 0xffff0000;
	else
		m = 0xffffff00;