diff options
author | Matt Johnston <matt@ucc.asn.au> | 2013-03-31 00:40:00 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2013-03-31 00:40:00 +0800 |
commit | a0e931005b6f9de407ba2ac5b5df9e34d4a7fb7e (patch) | |
tree | dac556bfd732ac24af552b92713afcd77d57a3cb /svr-session.c | |
parent | 9be0d6b53d6b85a8f273ee28876405fbca49b9fd (diff) |
send out our kexinit packet before blocking to read the SSH version string
Diffstat (limited to 'svr-session.c')
-rw-r--r-- | svr-session.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/svr-session.c b/svr-session.c index cf82289..7234f4a 100644 --- a/svr-session.c +++ b/svr-session.c @@ -114,7 +114,7 @@ void svr_session(int sock, int childpipe) { sessinitdone = 1; /* exchange identification, version etc */ - session_identification(); + send_session_identification(); /* start off with key exchange */ send_msg_kexinit(); |