]> gitweb.michael.orlitzky.com - mjo-overlay.git/blob - net-dns/djbdns/files/string_length_255.patch
Remove sys-apps/apply-default-acl, I can wait for it to show up in portage.
[mjo-overlay.git] / net-dns / djbdns / files / string_length_255.patch
1 --- a/tinydns-data.c 2001-02-11 16:11:45.000000000 -0500
2 +++ b/tinydns-data.c 2011-04-02 10:41:34.356302891 -0400
3 @@ -399,7 +399,7 @@
4 i = 0;
5 while (i < f[1].len) {
6 k = f[1].len - i;
7 - if (k > 127) k = 127;
8 + if (k > 255) k = 255;
9 ch = k;
10 rr_add(&ch,1);
11 rr_add(f[1].s + i,k);