projects
/
tinc
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
627f7c2
)
Fix for prefixlengths of 32 (IPv4) and 128 (IPv6) bits.
author
Guus Sliepen
<guus@tinc-vpn.org>
Fri, 21 Jun 2002 17:49:48 +0000
(17:49 +0000)
committer
Guus Sliepen
<guus@tinc-vpn.org>
Fri, 21 Jun 2002 17:49:48 +0000
(17:49 +0000)
src/netutl.c
patch
|
blob
|
history
diff --git
a/src/netutl.c
b/src/netutl.c
index
0cf1e0b
..
1cf03c3
100644
(file)
--- a/
src/netutl.c
+++ b/
src/netutl.c
@@
-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: netutl.c,v 1.12.4.4
0 2002/06/21 10:11:12
guus Exp $
+ $Id: netutl.c,v 1.12.4.4
1 2002/06/21 17:49:48
guus Exp $
*/
#include "config.h"
@@
-241,7
+241,7
@@
cp
i = masklen / 8;
masklen %= 8;
- if(a[i++] & (0xff >> masklen))
+ if(
masklen &&
a[i++] & (0xff >> masklen))
return -1;
for(; i < len; i++)