when showing other hostkeys, don't forget Ed25519 keys
authordjm <djm@openbsd.org>
Sun, 29 Dec 2013 05:57:02 +0000 (05:57 +0000)
committerdjm <djm@openbsd.org>
Sun, 29 Dec 2013 05:57:02 +0000 (05:57 +0000)
usr.bin/ssh/sshconnect.c

index 20db59d..6a77b9c 100644 (file)
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect.c,v 1.241 2013/10/16 02:31:46 djm Exp $ */
+/* $OpenBSD: sshconnect.c,v 1.242 2013/12/29 05:57:02 djm Exp $ */
 /*
  * Author: Tatu Ylonen <ylo@cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -1275,7 +1275,14 @@ ssh_put_password(char *password)
 static int
 show_other_keys(struct hostkeys *hostkeys, Key *key)
 {
-       int type[] = { KEY_RSA1, KEY_RSA, KEY_DSA, KEY_ECDSA, -1};
+       int type[] = {
+               KEY_RSA1,
+               KEY_RSA,
+               KEY_DSA,
+               KEY_ECDSA,
+               KEY_ED25519,
+               -1
+       };
        int i, ret = 0;
        char *fp, *ra;
        const struct hostkey_entry *found;