diff options
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 7 |
1 files changed, 3 insertions, 4 deletions
@@ -1,4 +1,4 @@ | |||
1 | /* $OpenBSD: sshd.c,v 1.462 2015/12/10 17:08:40 mmcc Exp $ */ | 1 | /* $OpenBSD: sshd.c,v 1.463 2016/01/14 16:17:40 markus 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 |
@@ -121,7 +121,6 @@ | |||
121 | #include "ssh-gss.h" | 121 | #include "ssh-gss.h" |
122 | #endif | 122 | #endif |
123 | #include "monitor_wrap.h" | 123 | #include "monitor_wrap.h" |
124 | #include "roaming.h" | ||
125 | #include "ssh-sandbox.h" | 124 | #include "ssh-sandbox.h" |
126 | #include "version.h" | 125 | #include "version.h" |
127 | #include "ssherr.h" | 126 | #include "ssherr.h" |
@@ -437,7 +436,7 @@ sshd_exchange_identification(int sock_in, int sock_out) | |||
437 | options.version_addendum, newline); | 436 | options.version_addendum, newline); |
438 | 437 | ||
439 | /* Send our protocol version identification. */ | 438 | /* Send our protocol version identification. */ |
440 | if (roaming_atomicio(vwrite, sock_out, server_version_string, | 439 | if (atomicio(vwrite, sock_out, server_version_string, |
441 | strlen(server_version_string)) | 440 | strlen(server_version_string)) |
442 | != strlen(server_version_string)) { | 441 | != strlen(server_version_string)) { |
443 | logit("Could not write ident string to %s", get_remote_ipaddr()); | 442 | logit("Could not write ident string to %s", get_remote_ipaddr()); |
@@ -447,7 +446,7 @@ sshd_exchange_identification(int sock_in, int sock_out) | |||
447 | /* Read other sides version identification. */ | 446 | /* Read other sides version identification. */ |
448 | memset(buf, 0, sizeof(buf)); | 447 | memset(buf, 0, sizeof(buf)); |
449 | for (i = 0; i < sizeof(buf) - 1; i++) { | 448 | for (i = 0; i < sizeof(buf) - 1; i++) { |
450 | if (roaming_atomicio(read, sock_in, &buf[i], 1) != 1) { | 449 | if (atomicio(read, sock_in, &buf[i], 1) != 1) { |
451 | logit("Did not receive identification string from %s", | 450 | logit("Did not receive identification string from %s", |
452 | get_remote_ipaddr()); | 451 | get_remote_ipaddr()); |
453 | cleanup_exit(255); | 452 | cleanup_exit(255); |