summaryrefslogtreecommitdiff
path: root/sshd.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-04-19 16:26:12 +1000
committerDamien Miller <djm@mindrot.org>2000-04-19 16:26:12 +1000
commit8bb73be04e3e38be582c4b3843c765aab74017c2 (patch)
tree2050fbf49e4e94a9cef9bbe557787298111eb886 /sshd.c
parent71795160ee9dbf15633b2c27679df62c11f79aaa (diff)
- OpenBSD CVS updates
[channels.c] - fix pr 1196, listen_port and port_to_connect interchanged [scp.c] - after completion, replace the progress bar ETA counter with a final elapsed time; my idea, aaron wrote the patch [ssh_config sshd_config] - show 'Protocol' as an example, ok markus@ [sshd.c] - missing xfree() - Add missing header to bsd-misc.c
Diffstat (limited to 'sshd.c')
-rw-r--r--sshd.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/sshd.c b/sshd.c
index c8508e931..3b75b884e 100644
--- a/sshd.c
+++ b/sshd.c
@@ -14,7 +14,7 @@
14 */ 14 */
15 15
16#include "includes.h" 16#include "includes.h"
17RCSID("$OpenBSD: sshd.c,v 1.105 2000/04/14 10:30:33 markus Exp $"); 17RCSID("$OpenBSD: sshd.c,v 1.106 2000/04/17 12:31:47 markus Exp $");
18 18
19#include "xmalloc.h" 19#include "xmalloc.h"
20#include "rsa.h" 20#include "rsa.h"
@@ -1265,6 +1265,7 @@ do_ssh2_kex()
1265 packet_put_bignum2(dh->pub_key); // f 1265 packet_put_bignum2(dh->pub_key); // f
1266 packet_put_string((char *)signature, slen); 1266 packet_put_string((char *)signature, slen);
1267 packet_send(); 1267 packet_send();
1268 xfree(signature);
1268 packet_write_wait(); 1269 packet_write_wait();
1269 1270
1270 kex_derive_keys(kex, hash, shared_secret); 1271 kex_derive_keys(kex, hash, shared_secret);