From 515a80251f14d4c033fd49918e9ecac308e135dd Mon Sep 17 00:00:00 2001 From: Felix Fietkau Date: Thu, 21 Jun 2012 20:26:49 +0200 Subject: [PATCH] add a #ifdef around the 6rd code to make it compile with older kernels that do not have 6rd support --- system-linux.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/system-linux.c b/system-linux.c index aaa8230..c4d094d 100644 --- a/system-linux.c +++ b/system-linux.c @@ -1065,6 +1065,7 @@ int system_add_ip_tunnel(const char *name, struct blob_attr *attr) if (tunnel_ioctl(base, SIOCADDTUNNEL, &p) < 0) return -1; +#ifdef SIOCADD6RD cur = tb[TUNNEL_ATTR_6RD_PREFIX]; if (cur && is_sit) { unsigned int mask; @@ -1089,6 +1090,7 @@ int system_add_ip_tunnel(const char *name, struct blob_attr *attr) return -1; } } +#endif return 0; } -- 2.11.0