summaryrefslogtreecommitdiff
path: root/src
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
commit8856db942533d34cba2868e3a22577cf9e8a2c0a (patch)
tree3a2861c3a4b7506fbdc49bcff36faa94ff29260b /src
parent15659163206e8918e93b44702579735d3206ca90 (diff)
Fix inserting inline certificates, increase log buffer
Diffstat (limited to 'src')
-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:";