summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-11-12 11:06:54 +1100
committerDamien Miller <djm@mindrot.org>2001-11-12 11:06:54 +1100
commite4a0ff4748faef9abd0244eef0321d466baf461c (patch)
treeab700d46049130f4acdfefec5fe7ef86bd0ac74f
parent79faeff2c1e9e25a0d7d9b11f168a96ca02d46f7 (diff)
- markus@cvs.openbsd.org 2001/11/09 19:08:35
[sshd.c] remove extra trailing dot from log message; pilot@naughty.monkey.org
-rw-r--r--ChangeLog7
-rw-r--r--sshd.c6
2 files changed, 8 insertions, 5 deletions
diff --git a/ChangeLog b/ChangeLog
index 237e74b1..6ce103ce 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -63,7 +63,10 @@
- (stevesk) auth-pam.c: use do_pam_authenticate(PAM_DISALLOW_NULL_AUTHTOK)
if permit_empty_passwd == 0 so null password check cannot be bypassed.
jayaraj@amritapuri.com OpenBSD bug 2168
-
+ - markus@cvs.openbsd.org 2001/11/09 19:08:35
+ [sshd.c]
+ remove extra trailing dot from log message; pilot@naughty.monkey.org
+
20011103
- (tim) [ contrib/caldera/openssh.spec contrib/caldera/sshd.init] Updates
from Raymund Will <ray@caldera.de>
@@ -6867,4 +6870,4 @@
- Wrote replacements for strlcpy and mkdtemp
- Released 1.0pre1
-$Id: ChangeLog,v 1.1651 2001/11/12 00:06:32 djm Exp $
+$Id: ChangeLog,v 1.1652 2001/11/12 00:06:54 djm Exp $
diff --git a/sshd.c b/sshd.c
index b2ed51e2..22ea8990 100644
--- a/sshd.c
+++ b/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>
@@ -337,7 +337,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();
}
@@ -345,7 +345,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();
}