From: dtucker Date: Fri, 3 Jun 2022 03:21:09 +0000 (+0000) Subject: Add period at end of "not known by any other names" message. github PR#320 X-Git-Url: http://artulab.com/gitweb/?a=commitdiff_plain;h=b4a490f57b226bd27712e9856cd19c64ac830f0e;p=openbsd Add period at end of "not known by any other names" message. github PR#320 from jschauma, ok djm@ --- 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 * Copyright (c) 1995 Tatu Ylonen , 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:");