diff options
Diffstat (limited to 'usr/local')
-rw-r--r-- | usr/local/www/diag_ipsec.php | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr/local/www/diag_ipsec.php b/usr/local/www/diag_ipsec.php index bfbad2f..bfa8e0b 100644 --- a/usr/local/www/diag_ipsec.php +++ b/usr/local/www/diag_ipsec.php @@ -207,7 +207,7 @@ $status = ipsec_list_sa(); * nat-local. Keep both for a while and remove local-nat-t in * the future */ - if (isset($ikesa['local-nat-t']) || isset($ikesa('nat-local'))) { + if (isset($ikesa['local-nat-t']) || isset($ikesa['nat-local'])) { echo " NAT-T"; } @@ -251,7 +251,7 @@ $status = ipsec_list_sa(); * nat-remote. Keep both for a while and remove remote-nat-t in * the future */ - if (isset($ikesa['remote-nat-t']) || isset($ikesa('nat-remote'))) { + if (isset($ikesa['remote-nat-t']) || isset($ikesa['nat-remote'])) { echo " NAT-T"; } ?> |