diff options
| -rw-r--r-- | src/de/blinkt/openvpn/FileSelect.java | 2 | ||||
| -rw-r--r-- | src/de/blinkt/openvpn/OpenVPN.java | 2 | 
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:"; | 
