Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 241158 | Differences between
and this patch

Collapse All | Expand All

(-)a/tinydns-data.c (-1 / +1 lines)
Lines 399-405 Link Here
399
	i = 0;
399
	i = 0;
400
	while (i < f[1].len) {
400
	while (i < f[1].len) {
401
	  k = f[1].len - i;
401
	  k = f[1].len - i;
402
	  if (k > 127) k = 127;
402
	  if (k > 255) k = 255;
403
	  ch = k;
403
	  ch = k;
404
	  rr_add(&ch,1);
404
	  rr_add(&ch,1);
405
	  rr_add(f[1].s + i,k);
405
	  rr_add(f[1].s + i,k);

Return to bug 241158