diff options
author | Renato Botelho <garga@FreeBSD.org> | 2015-01-16 14:50:01 -0200 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2015-01-16 14:50:01 -0200 |
commit | b9a12ae073d56eb0763b84985a1d56111f76d74e (patch) | |
tree | 1f44d0927225eeb15161abbe7fd8f25ab07044bd /etc/inc/interfaces.inc | |
parent | b9ad208ca95918905a2fcdc53ab0daa7e238023c (diff) | |
download | pfsense-b9a12ae073d56eb0763b84985a1d56111f76d74e.zip pfsense-b9a12ae073d56eb0763b84985a1d56111f76d74e.tar.gz |
Still missed one mistake on last commit
Diffstat (limited to 'etc/inc/interfaces.inc')
-rw-r--r-- | etc/inc/interfaces.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/interfaces.inc b/etc/inc/interfaces.inc index 63c51a8..7a6a565 100644 --- a/etc/inc/interfaces.inc +++ b/etc/inc/interfaces.inc @@ -812,7 +812,7 @@ function interfaces_gif_configure($checkparent = 0, $realif = "") { continue; } else if ($checkparent == 2) { - if (substr($gif['if'], 0, 4) != '_vip' && substr($gif['if'], 0, 5) == '_lloc') + if (substr($gif['if'], 0, 4) != '_vip' && substr($gif['if'], 0, 5) != '_lloc') continue; if (empty($config['interfaces'][$gif['if']]) || $config['interfaces'][$gif['if']]['ipaddrv6'] != "track6") continue; |