Fix bug in --dynamic-host when interface has /16 IPv4 address.

Signed-off-by: DL6ER <dl6er@dl6er.de>
This commit is contained in:
Simon Kelley
2022-10-13 15:02:54 +01:00
committed by DL6ER
parent 976e9321ed
commit 5929989ff9
+1 -1
View File
@@ -362,7 +362,7 @@ static int iface_allowed(struct iface_param *param, int if_index, char *label,
if (int_name->flags & INP4)
{
if (netmask.s_addr == 0xffff)
if (netmask.s_addr == 0xffffffff)
continue;
newaddr.s_addr = (addr->in.sin_addr.s_addr & netmask.s_addr) |