diff options
author | Xin LI <delphij@FreeBSD.org> | 2012-06-25 18:54:02 +0000 |
---|---|---|
committer | Xin LI <delphij@FreeBSD.org> | 2012-06-25 18:54:02 +0000 |
commit | 4bc11fc94e472842a59429d633d4b97124da2a2e (patch) | |
tree | 699b7ba896e27250c6d0ba2dde3dbb849576af6f /ssh-keyscan.c | |
parent | 3a979c350269b8a0c054b37f071a31a0d273c138 (diff) |
Notes
Diffstat (limited to 'ssh-keyscan.c')
-rw-r--r-- | ssh-keyscan.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ssh-keyscan.c b/ssh-keyscan.c index b085dd41703d..c9de130f46e7 100644 --- a/ssh-keyscan.c +++ b/ssh-keyscan.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ssh-keyscan.c,v 1.85 2011/03/15 10:36:02 okan Exp $ */ +/* $OpenBSD: ssh-keyscan.c,v 1.86 2012/04/11 13:34:17 djm Exp $ */ /* * Copyright 1995, 1996 by David Mazieres <dm@lcs.mit.edu>. * @@ -57,7 +57,7 @@ int ssh_port = SSH_DEFAULT_PORT; #define KT_RSA 4 #define KT_ECDSA 8 -int get_keytypes = KT_RSA; /* Get only RSA keys by default */ +int get_keytypes = KT_RSA|KT_ECDSA;/* Get RSA and ECDSA keys by default */ int hash_hosts = 0; /* Hash hostname on output */ |