Mercurial > 510Connectbot
diff src/org/tn5250j/framework/transport/SSL/SSLImplementation.java @ 84:8f23b05a51f7
convert ctrl keys to virtual keys; use proper android home directory
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Mon, 16 Jun 2014 11:25:37 -0700 |
parents | 011462bddcf1 |
children | 53de03150941 |
line wrap: on
line diff
--- a/src/org/tn5250j/framework/transport/SSL/SSLImplementation.java Mon Jun 16 10:43:30 2014 -0700 +++ b/src/org/tn5250j/framework/transport/SSL/SSLImplementation.java Mon Jun 16 11:25:37 2014 -0700 @@ -84,8 +84,7 @@ public void init(String sslType) { try { Log.d(TAG,"Initializing User KeyStore"); - userKsPath = System.getProperty("user.home") + File.separator - + GlobalConfigure.TN5250J_FOLDER + File.separator + "keystore"; + userKsPath = GlobalConfigure.settingsDirectory() + "keystore"; File userKsFile = new File(userKsPath); userks = KeyStore.getInstance(KeyStore.getDefaultType()); userks.load(userKsFile.exists() ? new FileInputStream(userKsFile)