mirror of
https://git.freebsd.org/ports.git
synced 2025-06-22 21:20:31 -04:00
- Added a patch to fix a problem with the allow-axfr-ips option (host/32 netmask didn't work) - Added an option to the configure dialog to compile the recursor - Bumped PORTREVISION PR: 59385 Submitted by: tremere@cainites.net
16 lines
602 B
Text
16 lines
602 B
Text
--- pdns/backends/bind/bindbackend2.cc.orig Sat Oct 4 16:15:46 2003
|
|
+++ pdns/backends/bind/bindbackend2.cc Mon Nov 17 20:54:19 2003
|
|
@@ -61,11 +61,10 @@
|
|
d_loaded=false;
|
|
d_last_check=0;
|
|
d_checknow=false;
|
|
- d_rwlock=new pthread_rwlock_t;
|
|
d_status="Seen in bind configuration";
|
|
d_confcount=0;
|
|
- // cout<<"Generated a new bbdomaininfo: "<<(void*)d_rwlock<<"/"<<getpid()<<endl;
|
|
- pthread_rwlock_init(d_rwlock,0);
|
|
+ // cout<<"Generated a new bbdomaininfo: "<<d_rwlock<<"/"<<getpid()<<endl;
|
|
+ pthread_rwlock_init(&d_rwlock,0);
|
|
}
|
|
|
|
void BB2DomainInfo::setCheckInterval(time_t seconds)
|