X-Git-Url: https://www.tinc-vpn.org/git/browse?p=tinc;a=blobdiff_plain;f=src%2Fsubnet.c;h=cb9cbb75e345e12952f5ac384e1008d859733226;hp=537be117520913413a295a7200e4a7dc23ad5415;hb=8b5e4211304aaa5d39bc95f04398bd5ecaa887d8;hpb=ce6c8e6d089abac81520c517185c6ef81b09f051 diff --git a/src/subnet.c b/src/subnet.c index 537be117..cb9cbb75 100644 --- a/src/subnet.c +++ b/src/subnet.c @@ -17,13 +17,14 @@ along with this program; if not, write to the Free Software Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. - $Id: subnet.c,v 1.1.2.22 2001/06/06 19:11:16 guus Exp $ + $Id: subnet.c,v 1.1.2.24 2001/08/28 20:52:39 guus Exp $ */ #include "config.h" #include #include +#include #include "conf.h" #include "net.h" @@ -60,9 +61,23 @@ cp /* We compare as if a subnet is a number that equals (address << 32 + netmask). */ if(a->net.ipv4.address == b->net.ipv4.address) - return a->net.ipv4.mask - b->net.ipv4.mask; + { + if(a->net.ipv4.mask < b->net.ipv4.mask) + return -1; + else if(a->net.ipv4.mask > b->net.ipv4.mask) + return 1; + else + return 0; + } else - return a->net.ipv4.address - b->net.ipv4.address; + { + if(a->net.ipv4.address < b->net.ipv4.address) + return -1; + else if(a->net.ipv4.address > b->net.ipv4.address) + return 1; + else + return 0; + } } int subnet_compare_ipv6(subnet_t *a, subnet_t *b)