From 92c1f31569f6b60facdef6782652a0380dc86bda Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Sun, 9 Feb 2020 08:23:48 +0000 Subject: [PATCH] cgtest: add missing \n in an error message. (cherry picked from commit c25dc9c2fd4ee90180a3c62a983bbd1726338ccd) --- cmdgen.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/cmdgen.c b/cmdgen.c index 4bb906f7..f6a3d08d 100644 --- a/cmdgen.c +++ b/cmdgen.c @@ -1336,7 +1336,8 @@ int main(int argc, char **argv) pubfilename, tmpfilename1); if (system(cmdbuf) || (fp = get_fp(tmpfilename1)) == NULL) { - printf("UNABLE to test fingerprint matching against OpenSSH"); + printf("UNABLE to test fingerprint matching against " + "OpenSSH\n"); } sfree(cmdbuf); }