Commit 2a2222a7 authored by theq86's avatar theq86 Committed by Franco Fichtner

Removed unnecessary semicolon

This semicolon is not needed but seems also not to break the config.
parent 8ca337c9
...@@ -891,7 +891,7 @@ function openvpn_reconfigure($mode, $settings, $device_only = false) ...@@ -891,7 +891,7 @@ function openvpn_reconfigure($mode, $settings, $device_only = false)
} }
if (isset($settings['reneg-sec']) && $settings['reneg-sec'] != "") { if (isset($settings['reneg-sec']) && $settings['reneg-sec'] != "") {
$conf .= "reneg-sec ".$settings['reneg-sec'].";\n"; $conf .= "reneg-sec ".$settings['reneg-sec']."\n";
} }
openvpn_add_custom($settings, $conf); openvpn_add_custom($settings, $conf);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment