Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 85478
Collapse All | Expand All

(-)x/net/ipv4/ip_output.c (+1 lines)
Lines 405-410 Link Here
405
	to->priority = from->priority;
405
	to->priority = from->priority;
406
	to->protocol = from->protocol;
406
	to->protocol = from->protocol;
407
	to->security = from->security;
407
	to->security = from->security;
408
	dst_release(to->dst);
408
	to->dst = dst_clone(from->dst);
409
	to->dst = dst_clone(from->dst);
409
	to->dev = from->dev;
410
	to->dev = from->dev;
410
411
(-)x/net/ipv6/ip6_output.c (+1 lines)
Lines 465-470 Link Here
465
	to->priority = from->priority;
465
	to->priority = from->priority;
466
	to->protocol = from->protocol;
466
	to->protocol = from->protocol;
467
	to->security = from->security;
467
	to->security = from->security;
468
	dst_release(to->dst);
468
	to->dst = dst_clone(from->dst);
469
	to->dst = dst_clone(from->dst);
469
	to->dev = from->dev;
470
	to->dev = from->dev;
470
471

Return to bug 85478