diff options
author | Renato Botelho <garga@FreeBSD.org> | 2013-07-13 11:41:58 -0300 |
---|---|---|
committer | Renato Botelho <garga@FreeBSD.org> | 2013-07-13 11:41:58 -0300 |
commit | 45eb8aeb5839b52af9f9e82cecdc5ed5579656f5 (patch) | |
tree | 42c506d4f57d1bfbea441112331e3d0fd9de550f | |
parent | e811fcbecb2ce72df9b2b7f7f4c5df6869fa423a (diff) | |
download | pfsense-45eb8aeb5839b52af9f9e82cecdc5ed5579656f5.zip pfsense-45eb8aeb5839b52af9f9e82cecdc5ed5579656f5.tar.gz |
Fix #3091, fix bad var assignment
-rw-r--r-- | etc/inc/gwlb.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/gwlb.inc b/etc/inc/gwlb.inc index ba9129d..9f7ebf7 100644 --- a/etc/inc/gwlb.inc +++ b/etc/inc/gwlb.inc @@ -176,7 +176,7 @@ EOD; } else continue; - $monitor_ips[] = monitor_ips; + $monitor_ips[] = $gateway['monitor']; $apingercfg = "target \"{$gateway['monitor']}\" {\n"; $apingercfg .= " description \"{$name}\"\n"; $apingercfg .= " srcip \"{$gwifip}\"\n"; |