summaryrefslogtreecommitdiff
path: root/usr.bin
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@cvs.openbsd.org>2022-06-03 03:21:10 +0000
committerDarren Tucker <dtucker@cvs.openbsd.org>2022-06-03 03:21:10 +0000
commitacbc17e76f80efbafd04d90f3f52e3cc1f08d00e (patch)
treeb462ad2c4cfb2d163c9d409d3817ec3ad03e2e5b /usr.bin
parent292cc218f4f6103b03e1f9e4a8da1a37bd47c159 (diff)
Add period at end of "not known by any other names" message. github PR#320
from jschauma, ok djm@
Diffstat (limited to 'usr.bin')
-rw-r--r--usr.bin/ssh/sshconnect.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshconnect.c b/usr.bin/ssh/sshconnect.c
index 52daead44d6..eab1231a3e1 100644
--- a/usr.bin/ssh/sshconnect.c
+++ b/usr.bin/ssh/sshconnect.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: sshconnect.c,v 1.356 2021/12/19 22:10:24 djm Exp $ */
+/* $OpenBSD: sshconnect.c,v 1.357 2022/06/03 03:21:09 dtucker Exp $ */
/*
* Author: Tatu Ylonen <ylo@cs.hut.fi>
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
@@ -778,7 +778,7 @@ other_hostkeys_message(const char *host, const char *ip,
system_hostfiles, num_system_hostfiles,
&othernames, &num_othernames);
if (num_othernames == 0)
- return xstrdup("This key is not known by any other names");
+ return xstrdup("This key is not known by any other names.");
xasprintf(&ret, "This host key is known by the following other "
"names/addresses:");