diff options
author | 2001-02-19 23:09:05 +0000 | |
---|---|---|
committer | 2001-02-19 23:09:05 +0000 | |
commit | 7ee0d2d3103f74383d8562a84e999adcfac1bccb (patch) | |
tree | 2bbd24a259dd8ce5b7ef4229e2edaa843199726e | |
parent | proper dmaable memory allocations; oops (diff) | |
download | wireguard-openbsd-7ee0d2d3103f74383d8562a84e999adcfac1bccb.tar.xz wireguard-openbsd-7ee0d2d3103f74383d8562a84e999adcfac1bccb.zip |
clarify message to make it not mention "ident"
-rw-r--r-- | usr.bin/ssh/sshd.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c index 2ca1294ad73..560b9328f9e 100644 --- a/usr.bin/ssh/sshd.c +++ b/usr.bin/ssh/sshd.c @@ -40,7 +40,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: sshd.c,v 1.167 2001/02/12 23:26:20 markus Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.168 2001/02/19 23:09:05 deraadt Exp $"); #include <openssl/dh.h> #include <openssl/bn.h> @@ -319,7 +319,8 @@ sshd_exchange_identification(int sock_in, int sock_out) memset(buf, 0, sizeof(buf)); for (i = 0; i < sizeof(buf) - 1; i++) { if (atomicio(read, sock_in, &buf[i], 1) != 1) { - log("Did not receive ident string from %s.", get_remote_ipaddr()); + log("Did not receive identification string from %s.", + get_remote_ipaddr()); fatal_cleanup(); } if (buf[i] == '\r') { |