[openssh-commits] [openssh] 02/02: upstream: missing space character in ssh -G output broke the

git+noreply at mindrot.org git+noreply at mindrot.org
Thu Sep 16 15:38:25 AEST 2021


This is an automated email from the git hooks/post-receive script.

djm pushed a commit to branch master
in repository openssh.

commit c25c84074a47f700dd6534995b4af4b456927150
Author: djm at openbsd.org <djm at openbsd.org>
Date:   Thu Sep 16 05:36:03 2021 +0000

    upstream: missing space character in ssh -G output broke the
    
    t-sshcfgparse regression test; spotted by anton@
    
    OpenBSD-Commit-ID: bcc36fae2f233caac4baa8e58482da4aa350eed0
---
 readconf.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/readconf.c b/readconf.c
index b99ad3b2..bcca6ed4 100644
--- a/readconf.c
+++ b/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 at cs.hut.fi>
  * Copyright (c) 1995 Tatu Ylonen <ylo at cs.hut.fi>, Espoo, Finland
@@ -3401,7 +3401,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);

-- 
To stop receiving notification emails like this one, please contact
djm at mindrot.org.


More information about the openssh-commits mailing list