aboutsummaryrefslogtreecommitdiff
path: root/dns
diff options
context:
space:
mode:
authorMatthias Andree <mandree@FreeBSD.org>2011-02-16 14:34:14 +0000
committerMatthias Andree <mandree@FreeBSD.org>2011-02-16 14:34:14 +0000
commit26036ca0dd12610b0dbd3831378cb8f0ae80ea70 (patch)
tree6182d096eb431660f36970a93c7febfe71f52a72 /dns
parent956e1cb9fc4ca1f99ec317f897cbfec80ee2ac2a (diff)
downloadports-26036ca0dd12610b0dbd3831378cb8f0ae80ea70.tar.gz
ports-26036ca0dd12610b0dbd3831378cb8f0ae80ea70.zip
Notes
Diffstat (limited to 'dns')
-rw-r--r--dns/dnsmasq/Makefile1
-rw-r--r--dns/dnsmasq/files/patch-aa11
2 files changed, 12 insertions, 0 deletions
diff --git a/dns/dnsmasq/Makefile b/dns/dnsmasq/Makefile
index 67edb47cc5ee..0b99c807fc06 100644
--- a/dns/dnsmasq/Makefile
+++ b/dns/dnsmasq/Makefile
@@ -7,6 +7,7 @@
PORTNAME= dnsmasq
PORTVERSION= 2.56
+PORTREVISION= 1
PORTEPOCH= 1
CATEGORIES= dns ipv6
MASTER_SITES= http://www.thekelleys.org.uk/dnsmasq/ \
diff --git a/dns/dnsmasq/files/patch-aa b/dns/dnsmasq/files/patch-aa
new file mode 100644
index 000000000000..b3537516efb1
--- /dev/null
+++ b/dns/dnsmasq/files/patch-aa
@@ -0,0 +1,11 @@
+--- src/util.c 2011-01-18 22:23:57.000000000 +0000
++++ src/util.c 2011-02-16 09:37:37.000000000 +0000
+@@ -379,7 +379,7 @@
+ while (maxlen == -1 || i < maxlen)
+ {
+ for (r = in; *r != 0 && *r != ':' && *r != '-'; r++)
+- if (!isxdigit((int)*r))
++ if (*r != '*' && !isxdigit((int)*r))
+ return -1;
+
+ if (*r == 0)