summaryrefslogtreecommitdiffstats
path: root/etc/inc/openvpn.inc
diff options
context:
space:
mode:
Diffstat (limited to 'etc/inc/openvpn.inc')
-rw-r--r--etc/inc/openvpn.inc6
1 files changed, 3 insertions, 3 deletions
diff --git a/etc/inc/openvpn.inc b/etc/inc/openvpn.inc
index b96afad..5fdcca2 100644
--- a/etc/inc/openvpn.inc
+++ b/etc/inc/openvpn.inc
@@ -266,7 +266,7 @@ function openvpn_reconfigure($mode,& $settings) {
if (empty($settings))
return;
- if ($settings['disable'])
+ if (isset($settings['disable']))
return;
/*
@@ -559,7 +559,7 @@ function openvpn_restart($mode, & $settings) {
usleep(250000);
}
- if ($settings['disable'])
+ if (isset($settings['disable']))
return;
/* start the new process */
@@ -607,7 +607,7 @@ function openvpn_resync_csc(& $settings) {
$fpath = $g['varetc_path']."/openvpn-csc/".$settings['common_name'];
- if ($settings['disable']) {
+ if (isset($settings['disable'])) {
unlink_if_exists($fpath);
return;
}
OpenPOWER on IntegriCloud