diff src/ch/ethz/ssh2/auth/AuthenticationManager.java @ 320:5afb8c1a54b9 ganymed

add ecdsa key support everywhere
author Carl Byington <carl@five-ten-sg.com>
date Thu, 31 Jul 2014 08:36:33 -0700
parents 071eccdff8ea
children 90537ba71897
line wrap: on
line diff
--- a/src/ch/ethz/ssh2/auth/AuthenticationManager.java	Thu Jul 31 08:20:47 2014 -0700
+++ b/src/ch/ethz/ssh2/auth/AuthenticationManager.java	Thu Jul 31 08:36:33 2014 -0700
@@ -309,7 +309,7 @@
             throw new PacketTypeException(type);
         }
         catch (IOException e) {
-            tm.close(e);
+            tm.close(e, false);
             throw e;
         }
     }
@@ -320,7 +320,7 @@
             return authenticated;
         }
         catch (IOException e) {
-            tm.close(e);
+            tm.close(e, false);
             throw e;
         }
     }
@@ -354,7 +354,7 @@
             throw new PacketTypeException(type);
         }
         catch (IOException e) {
-            tm.close(e);
+            tm.close(e, false);
             throw e;
         }
     }
@@ -409,7 +409,7 @@
             }
         }
         catch (IOException e) {
-            tm.close(e);
+            tm.close(e, false);
             throw e;
         }
     }