- Hit people who can't figure out subnet address/mask pairs with a

(clue)bat.
This commit is contained in:
Guus Sliepen 2000-10-29 00:46:43 +00:00
parent 7398002ade
commit 3b9802a542

View file

@ -17,7 +17,7 @@
along with this program; if not, write to the Free Software
Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
$Id: net.c,v 1.35.4.50 2000/10/29 00:02:18 guus Exp $
$Id: net.c,v 1.35.4.51 2000/10/29 00:46:43 guus Exp $
*/
#include "config.h"
@ -738,6 +738,14 @@ cp
net->net.ipv4.address = cfg->data.ip->address;
net->net.ipv4.mask = cfg->data.ip->mask;
/* Teach newbies what subnets are... */
if((net->net.ipv4.address & net->net.ipv4.mask) != net->net.ipv4.address)
{
syslog(LOG_ERR, _("Network address and subnet mask do not match!"));
return -1;
}
subnet_add(myself, net);
}