diff options
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sshd.c,v 1.551 2020/03/13 03:24:49 dtucker Exp $ */ | 1 | /* $OpenBSD: sshd.c,v 1.552 2020/03/13 04:01:57 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 |
@@ -2155,8 +2155,9 @@ main(int ac, char **av) | |||
2155 | if (!debug_flag) | 2155 | if (!debug_flag) |
2156 | alarm(options.login_grace_time); | 2156 | alarm(options.login_grace_time); |
2157 | 2157 | ||
2158 | if (kex_exchange_identification(ssh, -1, options.version_addendum) != 0) | 2158 | if ((r = kex_exchange_identification(ssh, -1, |
2159 | cleanup_exit(255); /* error already logged */ | 2159 | options.version_addendum)) != 0) |
2160 | sshpkt_fatal(ssh, r, "banner exchange"); | ||
2160 | 2161 | ||
2161 | ssh_packet_set_nonblocking(ssh); | 2162 | ssh_packet_set_nonblocking(ssh); |
2162 | 2163 | ||