From 231395d4df16f42107c57211c76075aefcd66c75 Mon Sep 17 00:00:00 2001 From: Arne Schwabe Date: Sun, 6 May 2012 21:15:50 +0200 Subject: Version 0.4.9 --- AndroidManifest.xml | 4 ++-- res/values/strings.xml | 4 ++-- src/de/blinkt/openvpn/OpenVpnManagementThread.java | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/AndroidManifest.xml b/AndroidManifest.xml index 49778363..263cc8c7 100644 --- a/AndroidManifest.xml +++ b/AndroidManifest.xml @@ -17,8 +17,8 @@ + android:versionCode="19" + android:versionName="0.4.9" > diff --git a/res/values/strings.xml b/res/values/strings.xml index 81ca4313..1ed40d9e 100644 --- a/res/values/strings.xml +++ b/res/values/strings.xml @@ -163,10 +163,10 @@ DNS Server: %s DNS Domain: %s Routes: %s - Cannot make sense of %1$s and %2$s as local IP with CIDR netmask, assuming second address is peer address of remote. Using /32 netmask for local IP. + Got interface information %1$s and %2$s, assuming second address is peer address of remote. Using /32 netmask for local IP. Cannot make sense of %1$s and %2$s as IP route with CIDR netmask, using /32 as netmask. Corrected route %1$s/%2$s to %3$s/%2$s - Cannot accces the Android Keychain Certificates. If you restored a backup of the app reselect the certificate + Cannot accces the Android Keychain Certificates. If you restored a backup of the app/app settings reselect the certificate to recreate the permission to access the certificate. Version: %s Could not write log contents to file Send Logfile diff --git a/src/de/blinkt/openvpn/OpenVpnManagementThread.java b/src/de/blinkt/openvpn/OpenVpnManagementThread.java index 450cd530..fcdb6046 100644 --- a/src/de/blinkt/openvpn/OpenVpnManagementThread.java +++ b/src/de/blinkt/openvpn/OpenVpnManagementThread.java @@ -172,7 +172,7 @@ public class OpenVpnManagementThread implements Runnable { mOpenVPNService.addRoute(routeparts[0], routeparts[1]); } else if (needed.equals("IFCONFIG")) { String[] ifconfigparts = extra.split(" "); - int mtu = Integer.parseInt(ifconfigparts[0]); + int mtu = Integer.parseInt(ifconfigparts[2]); mOpenVPNService.setLocalIP(ifconfigparts[0], ifconfigparts[1],mtu); } else { -- cgit v1.2.3