summaryrefslogtreecommitdiffstats
path: root/etc
diff options
context:
space:
mode:
authorBill Marquette <billm@pfsense.org>2008-09-08 01:21:40 +0000
committerBill Marquette <billm@pfsense.org>2008-09-08 01:21:40 +0000
commita825c6f764d099b1921a9518bdb3b213d3f333e3 (patch)
tree18847c9d119644a56e1071812bc8cbec7d3ca231 /etc
parent2a727bacfdc0f616b441e0ff23fddaf8c3028615 (diff)
downloadpfsense-a825c6f764d099b1921a9518bdb3b213d3f333e3.zip
pfsense-a825c6f764d099b1921a9518bdb3b213d3f333e3.tar.gz
No need to use a reference to the array, if it doesn't exist already
this tends to make it exist the next time a write_config() occurs which is now happening during bootup thanks to OpenVPN...yay! ;)
Diffstat (limited to 'etc')
-rw-r--r--etc/inc/vslb.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inc/vslb.inc b/etc/inc/vslb.inc
index e3a9566..6bf18b6 100644
--- a/etc/inc/vslb.inc
+++ b/etc/inc/vslb.inc
@@ -160,9 +160,9 @@ function echo_lbaction($action) {
function relayd_configure() {
global $config, $g;
- $vs_a = &$config['load_balancer']['virtual_server'];
- $pool_a = &$config['load_balancer']['lbpool'];
- $protocol_a = &$config['load_balancer']['lbprotocol'];
+ $vs_a = $config['load_balancer']['virtual_server'];
+ $pool_a = $config['load_balancer']['lbpool'];
+ $protocol_a = $config['load_balancer']['lbprotocol'];
$check_a = array();
OpenPOWER on IntegriCloud