From 7fd38f44ba327ab1cd1cad3ac76ebb169ccb12e0 Mon Sep 17 00:00:00 2001 From: m0se Date: Sat, 12 Apr 2014 10:56:30 +0200 Subject: fixing typo for GIF tunnels to work over IPv6 the call of get_interface_gatewayv6() in the creation of a GIF tunnel over IPv6 leads to a "Fatal error: Call to undefined function get_interface_gatewayv6() in /etc/inc/interfaces.inc on line 934". changeing the function call to get_interface_gateway_v6() fixed it for me on my local system. --- etc/inc/interfaces.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc index 852509f..c152e55 100644 --- a/etc/inc/interfaces.inc +++ b/etc/inc/interfaces.inc @@ -935,7 +935,7 @@ function interface_gif_configure(&$gif, $gifkey = "") { $realifip = $ipaddr; else $realifip = get_interface_ipv6($gif['if']); - $realifgw = get_interface_gatewayv6($gif['if']); + $realifgw = get_interface_gateway_v6($gif['if']); } /* make sure the parent interface is up */ if($realif) -- cgit v1.1