summaryrefslogtreecommitdiff
path: root/dns/bind9-dlz/files
diff options
context:
space:
mode:
authorDirk Meyer <dinoex@FreeBSD.org>2002-08-30 15:53:30 +0000
committerDirk Meyer <dinoex@FreeBSD.org>2002-08-30 15:53:30 +0000
commit8d97fb36a7343fd4d8e40f8e26aeb3e68c3b5ab9 (patch)
tree15963829bfbd0b1f9ab7643ad31a69945cf30944 /dns/bind9-dlz/files
parentAdd -I${WRKSRC}/include into CPPFLAGS, so that the port build even if there (diff)
BIND version 9 Nameserver, with DLZ extensions
Add capabilities to Bind 9 that will allow Bind backend databases to support adding and removing zones without interrupting normal server operation. WWW: http://bind-dlz.sourceforge.net/
Diffstat (limited to 'dns/bind9-dlz/files')
-rw-r--r--dns/bind9-dlz/files/dlz_postgres_driver.c.diff21
1 files changed, 21 insertions, 0 deletions
diff --git a/dns/bind9-dlz/files/dlz_postgres_driver.c.diff b/dns/bind9-dlz/files/dlz_postgres_driver.c.diff
new file mode 100644
index 000000000000..d7813efbe260
--- /dev/null
+++ b/dns/bind9-dlz/files/dlz_postgres_driver.c.diff
@@ -0,0 +1,21 @@
+--- bin/named/dlz_postgres_driver.c.orig Mon Jun 10 05:59:08 2002
++++ bin/named/dlz_postgres_driver.c Mon Jun 10 05:59:45 2002
+@@ -510,15 +510,15 @@
+
+ // free dbi->zone string
+ if(dbi->zone != NULL)
+- isc_mem_free(ns_g_mctx, (char *) dbi->zone);
++ isc_mem_free(ns_g_mctx, dbi->zone);
+
+ // free dbi->record string
+ if(dbi->record != NULL)
+- isc_mem_free(ns_g_mctx, (char *) dbi->record);
++ isc_mem_free(ns_g_mctx, dbi->record);
+
+ // free dbi->client string
+ if(dbi->client != NULL)
+- isc_mem_free(ns_g_mctx, (char *) dbi->client);
++ isc_mem_free(ns_g_mctx, dbi->client);
+
+ #ifdef ISC_PLATFORM_USETHREADS
+