openbsd-ports/net/libdnet/patches/patch-test_dnet_aton_c
bluhm 5b971d028d When using the dnet command-line tool, the fragment offset should
be limited to 0xfff8 but the actual limit was 0x1fff.  Add a missing
shift to support fragments for big IP packets.
ok naddy
2011-09-18 08:32:56 +00:00

15 lines
504 B
Plaintext

$OpenBSD: patch-test_dnet_aton_c,v 1.1 2011/09/18 08:32:56 bluhm Exp $
http://code.google.com/p/libdnet/issues/detail?id=17
--- test/dnet/aton.c.orig Mon Oct 14 17:42:10 2002
+++ test/dnet/aton.c Thu Jan 20 03:26:57 2011
@@ -86,7 +86,7 @@ off_aton(char *string, uint16_t *off)
} else {
i = strtol(string, &p, 10);
if (*string == '\0' || (*p != '\0' && *p != '+') ||
- i > IP_OFFMASK)
+ i > (IP_OFFMASK << 3))
return (-1);
*off = htons(((*p == '+') ? IP_MF : 0) | (i >> 3));
}