summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/de/blinkt/openvpn/OnBootReceiver.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/de/blinkt/openvpn/OnBootReceiver.java b/src/de/blinkt/openvpn/OnBootReceiver.java
index 6777f9ca..32d14b1b 100644
--- a/src/de/blinkt/openvpn/OnBootReceiver.java
+++ b/src/de/blinkt/openvpn/OnBootReceiver.java
@@ -17,12 +17,12 @@ public class OnBootReceiver extends BroadcastReceiver {
if(Intent.ACTION_BOOT_COMPLETED.equals(action)) {
VpnProfile bootProfile = ProfileManager.getOnBootProfile(context);
if(bootProfile != null) {
- lauchVPN(bootProfile, context);
+ launchVPN(bootProfile, context);
}
}
}
- void lauchVPN(VpnProfile profile,Context context) {
+ void launchVPN(VpnProfile profile, Context context) {
Intent startVpnIntent = new Intent(Intent.ACTION_MAIN);
startVpnIntent.setClass(context, LaunchVPN.class);
startVpnIntent.putExtra(LaunchVPN.EXTRA_KEY,profile.getUUIDString());