summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/de/blinkt/openvpn/FileSelect.java2
-rw-r--r--src/de/blinkt/openvpn/FileSelectionFragment.java1
2 files changed, 1 insertions, 2 deletions
diff --git a/src/de/blinkt/openvpn/FileSelect.java b/src/de/blinkt/openvpn/FileSelect.java
index e1a89b87..4adf8db2 100644
--- a/src/de/blinkt/openvpn/FileSelect.java
+++ b/src/de/blinkt/openvpn/FileSelect.java
@@ -121,7 +121,7 @@ public class FileSelect extends Activity {
Exception fe = null;
try {
- String data =VpnProfile.INLINE_TAG;
+ String data = "";
byte[] filedata = readBytesFromFile(ifile) ;
if(mBase64Encode)
diff --git a/src/de/blinkt/openvpn/FileSelectionFragment.java b/src/de/blinkt/openvpn/FileSelectionFragment.java
index f750d91a..82010b83 100644
--- a/src/de/blinkt/openvpn/FileSelectionFragment.java
+++ b/src/de/blinkt/openvpn/FileSelectionFragment.java
@@ -62,7 +62,6 @@ public class FileSelectionFragment extends ListFragment {
myPath = (TextView) v.findViewById(R.id.path);
mInlineImport = (CheckBox) v.findViewById(R.id.doinline);
- mInlineImport.setEnabled(false);
if(mHideImport== true) {
mInlineImport.setVisibility(View.GONE);