summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2014-01-16 21:35:35 +0100
committerArne Schwabe <arne@rfc2549.org>2014-01-16 21:35:35 +0100
commitfa8d545becf246b6f09d2fb6392d4cc25788346f (patch)
treeae511bc8a450d6900669c9992391656cbb6766f5 /src
parent1d787bef5257d3683dd1ca4835c347f33f967ad8 (diff)
fix typo
--HG-- extra : rebase_source : 57dcca25fdc7601edb4fc274d8fd918c6f4f21c1
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());