summaryrefslogtreecommitdiff
path: root/dns/powerdns/files/patch-pdns_iputils_hh
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2004-01-12 10:21:56 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2004-01-12 10:21:56 +0000
commit5d3e2ef39d90d61874cfdf9e29fa13a8b1eaf9a8 (patch)
tree4cd61d2c3f198ba9e085c81c4234fb108546e169 /dns/powerdns/files/patch-pdns_iputils_hh
parent- Update to 1.12 (diff)
- Update to 2.9.13
includes: - Opteron support! - pdns_recursor jumbles answers now - Big LDAP cleanup - Zone2sql is now somewhat clearer when reporting malformed line errors - pdns_recursor now survives the expiration of all its root records - Serious issue fixed: added a patch to fix High CPU Load with the pdns_server and mysqld processes PR: 61213 Submitted by: tremere@cainites.net
Notes
Notes: svn path=/head/; revision=97977
Diffstat (limited to '')
-rw-r--r--dns/powerdns/files/patch-pdns_iputils_hh18
1 files changed, 0 insertions, 18 deletions
diff --git a/dns/powerdns/files/patch-pdns_iputils_hh b/dns/powerdns/files/patch-pdns_iputils_hh
index 1dcd09077f33..e69de29bb2d1 100644
--- a/dns/powerdns/files/patch-pdns_iputils_hh
+++ b/dns/powerdns/files/patch-pdns_iputils_hh
@@ -1,18 +0,0 @@
---- pdns/iputils.hh.orig Sat Aug 30 16:27:48 2003
-+++ pdns/iputils.hh Mon Nov 10 17:27:02 2003
-@@ -51,10 +51,13 @@
- Netmask(const string &mask)
- {
- char *p;
-- char bits=32;
-+ u_int8_t bits=32;
-+ d_mask=0xFFFFFFFF;
-+
- if((p=strchr(mask.c_str(),'/')))
-- bits=atoi(p+1);
-+ bits = (u_int8_t) atoi(p+1);
-
-+ if( bits < 32 )
- d_mask=~(0xFFFFFFFF>>bits);
-
- struct in_addr a;