diff options
author | roy <roy@pkgsrc.org> | 2013-11-28 09:31:52 +0000 |
---|---|---|
committer | roy <roy@pkgsrc.org> | 2013-11-28 09:31:52 +0000 |
commit | 2c5705ab2dff1f1596054091e40871adf54c63c6 (patch) | |
tree | 0b7f971bc63552d15801107108b995eb0463c453 | |
parent | fc1f97784c30eeb047a802497d08675660575096 (diff) | |
download | pkgsrc-2c5705ab2dff1f1596054091e40871adf54c63c6.tar.gz |
Punt the not needed patch
-rw-r--r-- | net/dnsmasq/patches/patch-src_rfc2131.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/net/dnsmasq/patches/patch-src_rfc2131.c b/net/dnsmasq/patches/patch-src_rfc2131.c deleted file mode 100644 index 59b47a0a224..00000000000 --- a/net/dnsmasq/patches/patch-src_rfc2131.c +++ /dev/null @@ -1,15 +0,0 @@ -$NetBSD: patch-src_rfc2131.c,v 1.1 2013/07/21 07:59:26 roy Exp $ - -Don't assume a trailing terminator. - ---- src/rfc2131.c.orig 2013-04-17 12:52:49.000000000 +0000 -+++ src/rfc2131.c -@@ -534,7 +534,7 @@ size_t dhcp_reply(struct dhcp_context *c - } - - if (fqdn_flags & 0x04) -- while (*op != 0 && ((op + (*op) + 1) - pp) < len) -+ while (*op != 0 && ((op + (*op)) - pp) < len) - { - memcpy(pq, op+1, *op); - pq += *op; |