diff options
author | Markus Friedl <markus@cvs.openbsd.org> | 2001-11-09 19:08:36 +0000 |
---|---|---|
committer | Markus Friedl <markus@cvs.openbsd.org> | 2001-11-09 19:08:36 +0000 |
commit | 36b04874efc62cd1fe0e23dc0e2bedbd93b5452f (patch) | |
tree | 4b138accfaca238a485b0802e90702fd51167151 /usr.bin/ssh | |
parent | 074cf44a8748a6d4bce702e5e8868afba73110a5 (diff) |
remove extra trailing dot from log message; pilot@naughty.monkey.org
Diffstat (limited to 'usr.bin/ssh')
-rw-r--r-- | usr.bin/ssh/sshd.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/usr.bin/ssh/sshd.c b/usr.bin/ssh/sshd.c index 86f509519ad..1882b996e63 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.207 2001/10/24 08:41:41 markus Exp $"); +RCSID("$OpenBSD: sshd.c,v 1.208 2001/11/09 19:08:35 markus Exp $"); #include <openssl/dh.h> #include <openssl/bn.h> @@ -328,7 +328,7 @@ sshd_exchange_identification(int sock_in, int sock_out) /* Send our protocol version identification. */ if (atomicio(write, sock_out, server_version_string, strlen(server_version_string)) != strlen(server_version_string)) { - log("Could not write ident string to %s.", get_remote_ipaddr()); + log("Could not write ident string to %s", get_remote_ipaddr()); fatal_cleanup(); } @@ -336,7 +336,7 @@ 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 identification string from %s.", + log("Did not receive identification string from %s", get_remote_ipaddr()); fatal_cleanup(); } |