diff options
author | Damien Miller <djm@mindrot.org> | 2015-01-15 03:08:58 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-01-15 03:08:58 +1100 |
commit | b03ebe2c22b8166e4f64c37737f4278676e3488d (patch) | |
tree | 4b5e6701543cc6c79f3638759c7fc420491a4719 /ssh-agent.c | |
parent | bc42cc6fe784f36df225c44c93b74830027cb5a2 (diff) |
more --without-openssl
fix some regressions caused by upstream merges
enable KRLs now that they no longer require BIGNUMs
Diffstat (limited to 'ssh-agent.c')
-rw-r--r-- | ssh-agent.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ssh-agent.c b/ssh-agent.c index 4925d47a3..43000a429 100644 --- a/ssh-agent.c +++ b/ssh-agent.c | |||
@@ -524,6 +524,7 @@ reaper(void) | |||
524 | return (deadline - now); | 524 | return (deadline - now); |
525 | } | 525 | } |
526 | 526 | ||
527 | #ifdef WITH_SSH1 | ||
527 | /* | 528 | /* |
528 | * XXX this and the corresponding serialisation function probably belongs | 529 | * XXX this and the corresponding serialisation function probably belongs |
529 | * in key.c | 530 | * in key.c |
@@ -565,6 +566,7 @@ agent_decode_rsa1(struct sshbuf *m, struct sshkey **kp) | |||
565 | sshkey_free(k); | 566 | sshkey_free(k); |
566 | return r; | 567 | return r; |
567 | } | 568 | } |
569 | #endif | ||
568 | 570 | ||
569 | static void | 571 | static void |
570 | process_add_identity(SocketEntry *e, int version) | 572 | process_add_identity(SocketEntry *e, int version) |