comparison src/com/five_ten_sg/connectbot/transport/SSH.java @ 318:5351641c8a46 ganymed

add ecdsa key support everywhere
author Carl Byington <carl@five-ten-sg.com>
date Wed, 30 Jul 2014 17:46:06 -0700
parents 4c3a4e88c027
children
comparison
equal deleted inserted replaced
317:cdb3c9215a9b 318:5351641c8a46
563 return; 563 return;
564 } 564 }
565 catch (IOException e) { 565 catch (IOException e) {
566 Log.e(TAG, "Problem in SSH connection thread during authentication", e); 566 Log.e(TAG, "Problem in SSH connection thread during authentication", e);
567 // Display the reason in the text. 567 // Display the reason in the text.
568 bridge.outputLine(e.getCause().getMessage()); 568 Throwable t = e.getCause();
569 String m = (t == null) ? e.getMessage() : t.getMessage();
570 bridge.outputLine(m);
569 onDisconnect(); 571 onDisconnect();
570 return; 572 return;
571 } 573 }
572 574
573 try { 575 try {