]> git.ipfire.org Git - people/ms/ipfire-3.x.git/blobdiff - bind/patches/bind95-rh461409.patch
bind: Update to 9.9.6-P1.
[people/ms/ipfire-3.x.git] / bind / patches / bind95-rh461409.patch
diff --git a/bind/patches/bind95-rh461409.patch b/bind/patches/bind95-rh461409.patch
deleted file mode 100644 (file)
index 8c0c772..0000000
+++ /dev/null
@@ -1,19 +0,0 @@
-diff -up bind-9.5.1b1/bin/dig/dighost.c.rh461409 bind-9.5.1b1/bin/dig/dighost.c
---- bind-9.5.1b1/bin/dig/dighost.c.rh461409    2008-09-16 14:04:03.000000000 +0200
-+++ bind-9.5.1b1/bin/dig/dighost.c     2008-09-16 14:06:06.000000000 +0200
-@@ -3665,6 +3665,15 @@ output_filter (isc_buffer_t *buffer, uns
-       (void) strcpy (tmp1, tmp2);
-       free (tmp2);
-+      tmp2 = stringprep_utf8_to_locale (tmp1);
-+      if (tmp2 == NULL) {
-+              debug ("output_filter: stringprep_utf8_to_locale failed");
-+              return ISC_R_SUCCESS;
-+      }
-+
-+      (void) strcpy (tmp1, tmp2);
-+      free (tmp2);
-+
-         tolen = strlen (tmp1);
-         if (absolute && !end_with_dot && tmp1[tolen - 1] == '.')
-                 tolen--;