summaryrefslogtreecommitdiff
path: root/main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2021-10-20 14:44:31 +0200
committerArne Schwabe <arne@rfc2549.org>2021-10-20 14:44:31 +0200
commit1e791c969df77a424d5d1561cd839aee5b6f00a0 (patch)
tree6f12335d34477a12867c4c1856eacd974f97cbdf /main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java
parent33218dd7a52b63e6a2e83a57dff8308a18087106 (diff)
Fix writing tls profile to static key config and few cleanups
Diffstat (limited to 'main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java')
-rw-r--r--main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java b/main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java
index cb78784c..09730245 100644
--- a/main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java
+++ b/main/src/main/java/de/blinkt/openvpn/core/OpenVPNService.java
@@ -614,7 +614,7 @@ public class OpenVPNService extends VpnService implements StateListener, Callbac
// Open the Management Interface
if (!useOpenVPN3) {
- // start a Thread that handles incoming messages of the managment socket
+ // start a Thread that handles incoming messages of the management socket
OpenVpnManagementThread ovpnManagementThread = new OpenVpnManagementThread(mProfile, this);
if (ovpnManagementThread.openManagementInterface(this)) {
Thread mSocketManagerThread = new Thread(ovpnManagementThread, "OpenVPNManagementThread");