summaryrefslogtreecommitdiff
path: root/ssh-add.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-12-18 17:49:48 +1100
committerDamien Miller <djm@mindrot.org>2013-12-18 17:49:48 +1100
commit059321d19af24d87420de3193f79dfab23556078 (patch)
tree84ae5e1ddb78c40f5193b11e40feaa4ca9e1ebc9 /ssh-add.c
parent155b5a5bf158767f989215479ded2a57f331e1c6 (diff)
- pascal@cvs.openbsd.org 2013/12/15 18:17:26
[ssh-add.c] Make ssh-add also add .ssh/id_ed25519; fixes lie in manual page. ok markus@
Diffstat (limited to 'ssh-add.c')
-rw-r--r--ssh-add.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/ssh-add.c b/ssh-add.c
index 5e8166f66..896584482 100644
--- a/ssh-add.c
+++ b/ssh-add.c
@@ -1,4 +1,4 @@
1/* $OpenBSD: ssh-add.c,v 1.106 2013/05/17 00:13:14 djm Exp $ */ 1/* $OpenBSD: ssh-add.c,v 1.107 2013/12/15 18:17:26 pascal Exp $ */
2/* 2/*
3 * Author: Tatu Ylonen <ylo@cs.hut.fi> 3 * Author: Tatu Ylonen <ylo@cs.hut.fi>
4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland 4 * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -73,6 +73,7 @@ static char *default_files[] = {
73#ifdef OPENSSL_HAS_ECC 73#ifdef OPENSSL_HAS_ECC
74 _PATH_SSH_CLIENT_ID_ECDSA, 74 _PATH_SSH_CLIENT_ID_ECDSA,
75#endif 75#endif
76 _PATH_SSH_CLIENT_ID_ED25519,
76 _PATH_SSH_CLIENT_IDENTITY, 77 _PATH_SSH_CLIENT_IDENTITY,
77 NULL 78 NULL
78}; 79};