diff options
author | 2020-04-24 03:33:21 +0000 | |
---|---|---|
committer | 2020-04-24 03:33:21 +0000 | |
commit | 7624ac77368f6874900ebde9d9fc89252539bb78 (patch) | |
tree | c59c8725394efe3c7b7a554e1776440714d0d02c | |
parent | Remove leave_non_blocking() which is now dead code because nothing sets (diff) | |
download | wireguard-openbsd-7624ac77368f6874900ebde9d9fc89252539bb78.tar.xz wireguard-openbsd-7624ac77368f6874900ebde9d9fc89252539bb78.zip |
Fix incorrect error message for "too many known hosts files." bz#3149, patch
from jjelen at redhat.com.
-rw-r--r-- | usr.bin/ssh/readconf.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/usr.bin/ssh/readconf.c b/usr.bin/ssh/readconf.c index 0e1c4405231..fcb06281b68 100644 --- a/usr.bin/ssh/readconf.c +++ b/usr.bin/ssh/readconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.c,v 1.328 2020/04/03 03:12:11 dtucker Exp $ */ +/* $OpenBSD: readconf.c,v 1.329 2020/04/24 03:33:21 dtucker Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -1161,7 +1161,7 @@ parse_char_array: while ((arg = strdelim(&s)) != NULL && *arg != '\0') { if ((*uintptr) >= max_entries) fatal("%s line %d: " - "too many authorized keys files.", + "too many known hosts files.", filename, linenum); cpptr[(*uintptr)++] = xstrdup(arg); } |