summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorm0se <m0se@fluffypattern.ch>2014-04-12 10:56:30 +0200
committerErmal <eri@pfsense.org>2014-04-12 16:29:43 +0000
commitbb8f3ce11564041abd8db4fc21c87afa5c27bce9 (patch)
tree23a177d98f249ac8ac6a88a82b58c8527b6d886c /etc
parentfaf20ee4a7652b80f8ef4578c1b2f5bd999c708c (diff)
downloadpfsense-bb8f3ce11564041abd8db4fc21c87afa5c27bce9.zip
pfsense-bb8f3ce11564041abd8db4fc21c87afa5c27bce9.tar.gz
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.
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/interfaces.inc2
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc
index cca7862..6b5d943 100644
--- a/etc/inc/interfaces.inc
+++ b/etc/inc/interfaces.inc
@@ -945,7 +945,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)
OpenPOWER on IntegriCloud