diff options
author | Damien Miller <djm@mindrot.org> | 2015-01-14 17:08:58 +0100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2015-01-14 17:08:58 +0100 |
commit | b03ebe2c22b8166e4f64c37737f4278676e3488d (patch) | |
tree | 4b5e6701543cc6c79f3638759c7fc420491a4719 /ssh-agent.c | |
parent | kludge around tun API mismatch betterer (diff) | |
download | openssh-b03ebe2c22b8166e4f64c37737f4278676e3488d.tar.xz openssh-b03ebe2c22b8166e4f64c37737f4278676e3488d.zip |
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) return (deadline - now); } +#ifdef WITH_SSH1 /* * XXX this and the corresponding serialisation function probably belongs * in key.c @@ -565,6 +566,7 @@ agent_decode_rsa1(struct sshbuf *m, struct sshkey **kp) sshkey_free(k); return r; } +#endif static void process_add_identity(SocketEntry *e, int version) |