diff options
author | Arne Schwabe <arne@rfc2549.org> | 2012-12-27 19:47:35 +0100 |
---|---|---|
committer | Arne Schwabe <arne@rfc2549.org> | 2012-12-27 19:47:35 +0100 |
commit | 1c8e1f9adb41d69829886538e9b2b25a9aeb7bbb (patch) | |
tree | 90a37b04858799a40f16600f81edae0840f4a576 /src/de/blinkt/openvpn/VpnProfile.java | |
parent | 5420d42b057ad6e0d606088fa9e0836824db8b14 (diff) |
Make changes needed to provide an external API
Diffstat (limited to 'src/de/blinkt/openvpn/VpnProfile.java')
-rw-r--r-- | src/de/blinkt/openvpn/VpnProfile.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/de/blinkt/openvpn/VpnProfile.java b/src/de/blinkt/openvpn/VpnProfile.java index 4c3c05f0..d8b22ae6 100644 --- a/src/de/blinkt/openvpn/VpnProfile.java +++ b/src/de/blinkt/openvpn/VpnProfile.java @@ -595,7 +595,7 @@ public class VpnProfile implements Serializable{ //! Return an error if somethign is wrong - int checkProfile(Context context) { + public int checkProfile(Context context) { if(mAuthenticationType==TYPE_KEYSTORE || mAuthenticationType==TYPE_USERPASS_KEYSTORE) { if(mAlias==null) return R.string.no_keystore_cert_selected; |