diff options
-rw-r--r-- | ssh-agent.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index 41e12acc9..cff859ff5 100644 --- a/ssh-agent.c +++ b/ssh-agent.c | |||
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: ssh-agent.c,v 1.197 2015/01/28 22:36:00 djm Exp $ */ | 1 | /* $OpenBSD: ssh-agent.c,v 1.198 2015/03/03 21:21:13 djm 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 |
@@ -541,6 +541,7 @@ reaper(void) | |||
541 | * XXX this and the corresponding serialisation function probably belongs | 541 | * XXX this and the corresponding serialisation function probably belongs |
542 | * in key.c | 542 | * in key.c |
543 | */ | 543 | */ |
544 | #ifdef WITH_SSH1 | ||
544 | static int | 545 | static int |
545 | agent_decode_rsa1(struct sshbuf *m, struct sshkey **kp) | 546 | agent_decode_rsa1(struct sshbuf *m, struct sshkey **kp) |
546 | { | 547 | { |
@@ -655,6 +656,7 @@ process_add_identity(SocketEntry *e, int version) | |||
655 | send: | 656 | send: |
656 | send_status(e, success); | 657 | send_status(e, success); |
657 | } | 658 | } |
659 | #endif /* WITH_SSH1 */ | ||
658 | 660 | ||
659 | /* XXX todo: encrypt sensitive data with passphrase */ | 661 | /* XXX todo: encrypt sensitive data with passphrase */ |
660 | static void | 662 | static void |