diff options
author | Damien Miller <djm@mindrot.org> | 2000-06-23 10:16:38 +1000 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2000-06-23 10:16:38 +1000 |
commit | bf7f466206d4ca43c66d910099b2047df5659350 (patch) | |
tree | 4ada535baf0220a2007b046432e4614054e06a9f /sshd.c | |
parent | b54b40ef06517dc3091253228f06d3bd54f19a82 (diff) |
- OpenBSD CVS Updates:
- markus@cvs.openbsd.org 2000/06/22 10:32:27
[sshd.c]
missing atomicio; report from Steve.Marquess@DET.AMEDD.ARMY.MIL
- djm@cvs.openbsd.org 2000/06/22 17:55:00
[auth-krb4.c key.c radix.c uuencode.c]
Missing CVS idents; ok markus
Diffstat (limited to 'sshd.c')
-rw-r--r-- | sshd.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -14,7 +14,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.118 2000/05/25 20:45:20 markus Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.119 2000/06/22 16:32:27 markus Exp $"); #include "xmalloc.h" #include "rsa.h" @@ -296,7 +296,7 @@ sshd_exchange_identification(int sock_in, int sock_out) /* Read other side\'s version identification. */ for (i = 0; i < sizeof(buf) - 1; i++) { - if (read(sock_in, &buf[i], 1) != 1) { + if (atomicio(read, sock_in, &buf[i], 1) != 1) { log("Did not receive ident string from %s.", get_remote_ipaddr()); fatal_cleanup(); } |