900526
diff -up bind-9.5.0b1/bin/dig/dighost.c.libidn3 bind-9.5.0b1/bin/dig/dighost.c
900526
--- bind-9.5.0b1/bin/dig/dighost.c.libidn3	2007-12-20 13:24:27.000000000 +0100
900526
+++ bind-9.5.0b1/bin/dig/dighost.c	2007-12-20 13:27:10.000000000 +0100
900526
@@ -1859,10 +1859,13 @@ setup_lookup(dig_lookup_t *lookup) {
900526
 	if (lookup->origin != NULL) {
900526
 		result = libidn_locale_to_utf8 (lookup->origin->origin, utf8_str);
900526
 		check_result (result, "convert origin to UTF-8");
900526
-		if (len + strlen (utf8_str) < MXNAME)
900526
-			(void) strcpy (utf8_name + len, utf8_str);
900526
-		else
900526
-			fatal ("Too long name + origin");
900526
+		if (len > 0 && utf8_name[len - 1] != '.') {
900526
+			utf8_name[len++] = '.';
900526
+			if (len + strlen (utf8_str) < MXNAME)
900526
+				(void) strcpy (utf8_name + len, utf8_str);
900526
+			else
900526
+				fatal ("Too long name + origin");
900526
+		}
900526
 	}
900526
 
900526
 	result = libidn_utf8_to_ascii (utf8_name, ascii_name);