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

Collapse All | Expand All

(-)iproute2-2.6.19-061214/ip/iptunnel.c.orig (-7 lines)
Lines 456-468 int do_iptunnel(int argc, char **argv) Link Here
456
		break;
456
		break;
457
	case AF_INET:
457
	case AF_INET:
458
		break;
458
		break;
459
	/*
460
	 * This is silly enough but we have no easy way to make it
461
	 * protocol-independent because of unarranged structure between
462
	 * IPv4 and IPv6.
463
	 */
464
	case AF_INET6:
465
		return do_ip6tunnel(argc, argv);
466
	default:
459
	default:
467
		fprintf(stderr, "Unsupported family:%d\n", preferred_family);
460
		fprintf(stderr, "Unsupported family:%d\n", preferred_family);
468
		exit(-1);
461
		exit(-1);
(-)iproute2-2.6.19-061214/ip/Makefile.orig (-1 / +1 lines)
Lines 1-5 Link Here
1
IPOBJ=ip.o ipaddress.o iproute.o iprule.o \
1
IPOBJ=ip.o ipaddress.o iproute.o iprule.o \
2
    rtm_map.o iptunnel.o ip6tunnel.o tunnel.o ipneigh.o ipntable.o iplink.o \
2
    rtm_map.o iptunnel.o tunnel.o ipneigh.o ipntable.o iplink.o \
3
    ipmaddr.o ipmonitor.o ipmroute.o ipprefix.o \
3
    ipmaddr.o ipmonitor.o ipmroute.o ipprefix.o \
4
    ipxfrm.o xfrm_state.o xfrm_policy.o xfrm_monitor.o
4
    ipxfrm.o xfrm_state.o xfrm_policy.o xfrm_monitor.o
5
5

Return to bug 162885