diff options
Diffstat (limited to 'src/leap/bitmask/vpn/service.py')
-rw-r--r-- | src/leap/bitmask/vpn/service.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/bitmask/vpn/service.py b/src/leap/bitmask/vpn/service.py index 2c7c69c..0a26b28 100644 --- a/src/leap/bitmask/vpn/service.py +++ b/src/leap/bitmask/vpn/service.py @@ -150,5 +150,5 @@ class VPNService(HookableService): cert_path = key_path = prefix + "/client/openvpn.pem" ca_path = prefix + "/ca/cacert.pem" - self._vpn = VPNManager(remotes, cert_path, key_path, ca_path, + self._vpn = VPNManager(provider, remotes, cert_path, key_path, ca_path, extra_flags) |