diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-07-16 04:29:35 +0200 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-07-16 04:29:35 +0200 |
commit | 1a20bf712119d2a336ba9daa3abbc416a23a81d7 (patch) | |
tree | 55412f3d8e07f4ae102d82f2b425e2a2e9627926 /src/de/blinkt/openvpn/ShowConfigFragment.java | |
parent | cb18cf6c0aed926eaad59025efd446a270aea57e (diff) |
Fixes error reported on the Android market consolev0.5.12a
- setting 0.0.0.0 as DNS gives NP
- Using a invalid keystone key gives a NP in rsa_sign (Seems to happen on 4.0 -> 4.1 upgrade)
- stupid config converter bug introduced in 5.12
- bump version to 5.12a
Diffstat (limited to 'src/de/blinkt/openvpn/ShowConfigFragment.java')
-rw-r--r-- | src/de/blinkt/openvpn/ShowConfigFragment.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/ShowConfigFragment.java b/src/de/blinkt/openvpn/ShowConfigFragment.java index 8c8ab315..2f6c23d7 100644 --- a/src/de/blinkt/openvpn/ShowConfigFragment.java +++ b/src/de/blinkt/openvpn/ShowConfigFragment.java @@ -21,7 +21,7 @@ public class ShowConfigFragment extends Fragment { View v=inflater.inflate(R.layout.viewconfig, container,false); TextView cv = (TextView) v.findViewById(R.id.configview); - int check=vp.checkProfile(); + int check=vp.checkProfile(getActivity()); if(check!=R.string.no_error_found) { cv.setText(check); configtext = getString(check); |