diff options
author | 2021-03-03 21:40:16 +0000 | |
---|---|---|
committer | 2021-03-03 21:40:16 +0000 | |
commit | 0daa75b76699a4fe5160025bd8ea1ad6316a8af6 (patch) | |
tree | 5e56e12481a8bfd9fe3e29c8ee2921c04c45e4ef /usr.bin/ssh/sshconnect.c | |
parent | s/byte/character (diff) | |
download | wireguard-openbsd-0daa75b76699a4fe5160025bd8ea1ad6316a8af6.tar.xz wireguard-openbsd-0daa75b76699a4fe5160025bd8ea1ad6316a8af6.zip |
typo in other_hostkeys_message() display output, ok djm
Diffstat (limited to 'usr.bin/ssh/sshconnect.c')
-rw-r--r-- | usr.bin/ssh/sshconnect.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/sshconnect.c b/usr.bin/ssh/sshconnect.c index 47904020d6b..2cd83212a11 100644 --- a/usr.bin/ssh/sshconnect.c +++ b/usr.bin/ssh/sshconnect.c @@ -1,4 +1,4 @@ -/* $OpenBSD: sshconnect.c,v 1.350 2021/01/26 00:49:30 djm Exp $ */ +/* $OpenBSD: sshconnect.c,v 1.351 2021/03/03 21:40:16 sthen Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -788,7 +788,7 @@ other_hostkeys_message(const char *host, const char *ip, xextendf(&ret, "\n", " %s", othernames[i]); } if (n < num_othernames) { - xextendf(&ret, "\n", " (%d additional names ommitted)", + xextendf(&ret, "\n", " (%d additional names omitted)", num_othernames - n); } for (i = 0; i < num_othernames; i++) |