diff options
author | Damien Miller <djm@cvs.openbsd.org> | 2021-09-16 05:36:04 +0000 |
---|---|---|
committer | Damien Miller <djm@cvs.openbsd.org> | 2021-09-16 05:36:04 +0000 |
commit | 498ba57ff1592a8ab979c5cb4a498ceaa21290bd (patch) | |
tree | a0eda13692fe0ea2cd07f8292dbf3bb178b4fbe3 /usr.bin/ssh/readconf.c | |
parent | b70d58a6a6f457e0625dd807c505b329aa0a03ec (diff) |
missing space character in ssh -G output broke the t-sshcfgparse
regression test; spotted by anton@
Diffstat (limited to 'usr.bin/ssh/readconf.c')
-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 62982fcfff8..5324d4fc87a 100644 --- a/usr.bin/ssh/readconf.c +++ b/usr.bin/ssh/readconf.c @@ -1,4 +1,4 @@ -/* $OpenBSD: readconf.c,v 1.362 2021/09/15 06:56:01 djm Exp $ */ +/* $OpenBSD: readconf.c,v 1.363 2021/09/16 05:36:03 djm Exp $ */ /* * Author: Tatu Ylonen <ylo@cs.hut.fi> * Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland @@ -3380,7 +3380,7 @@ dump_client_config(Options *o, const char *host) /* oCanonicalizePermittedCNAMEs */ printf("canonicalizePermittedcnames"); if (o->num_permitted_cnames == 0) - printf("none"); + printf(" none"); for (i = 0; i < o->num_permitted_cnames; i++) { printf(" %s:%s", o->permitted_cnames[i].source_list, o->permitted_cnames[i].target_list); |