summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2013-01-10 15:14:33 +0100
committerArne Schwabe <arne@rfc2549.org>2013-01-10 15:14:33 +0100
commit162f73a94b80c18fe49bcd28af0123d94426eb92 (patch)
tree8b13763af43d7ca50994eb59de588761cf0c4971
parent6f5350d698dabd76981c0a26440165e90d2c2759 (diff)
Fix inserting inline certificates, increase log buffer
-rw-r--r--src/de/blinkt/openvpn/FileSelect.java2
-rw-r--r--src/de/blinkt/openvpn/OpenVPN.java2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/de/blinkt/openvpn/FileSelect.java b/src/de/blinkt/openvpn/FileSelect.java
index 0778b56b..b6239433 100644
--- a/src/de/blinkt/openvpn/FileSelect.java
+++ b/src/de/blinkt/openvpn/FileSelect.java
@@ -199,7 +199,7 @@ public class FileSelect extends Activity {
public void saveInlineData(String string) {
Intent intent = new Intent();
- intent.putExtra(RESULT_DATA, mData);
+ intent.putExtra(RESULT_DATA, string);
setResult(Activity.RESULT_OK,intent);
finish();
diff --git a/src/de/blinkt/openvpn/OpenVPN.java b/src/de/blinkt/openvpn/OpenVPN.java
index 82a8dfd8..7b4693f9 100644
--- a/src/de/blinkt/openvpn/OpenVPN.java
+++ b/src/de/blinkt/openvpn/OpenVPN.java
@@ -89,7 +89,7 @@ public class OpenVPN {
}
}
- private static final int MAXLOGENTRIES = 200;
+ private static final int MAXLOGENTRIES = 500;
public static final String MANAGMENT_PREFIX = "M:";