diff options
author | jim-p <jimp@pfsense.org> | 2014-05-20 11:40:08 -0400 |
---|---|---|
committer | jim-p <jimp@pfsense.org> | 2014-05-20 11:41:00 -0400 |
commit | 75786d2a26b128361bd0ee87a70da9addbcb10ec (patch) | |
tree | 02fa45a98c958377ac13ef0e7aad2f058eb2a95f | |
parent | 89adb2f3a9e193f51f1db54372868b376cf8de48 (diff) | |
download | pfsense-75786d2a26b128361bd0ee87a70da9addbcb10ec.zip pfsense-75786d2a26b128361bd0ee87a70da9addbcb10ec.tar.gz |
Correct variable test here, too. Ticket #3662
-rw-r--r-- | etc/inc/vpn.inc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/etc/inc/vpn.inc b/etc/inc/vpn.inc index e4ba1fa..b509d08 100644 --- a/etc/inc/vpn.inc +++ b/etc/inc/vpn.inc @@ -290,7 +290,7 @@ charon { EOD; - if (is_array($a_client) && isset($a_client['enable']) && !empty($a_client['net_list'])) + if (is_array($a_client) && isset($a_client['enable']) && isset($a_client['net_list'])) $strongswan .= "\tcisco_unity = yes\n"; $strongswan .= "\tplugins {\n"; |