BUG/MINOR: ssl/cli: Remove empty lines from CLI output

There were empty lines in the output of "show ssl ca-file <cafile>" and
"show ssl crl-file <crlfile>" commands when an empty line should only
mark the end of the output. This patch adds a space to those lines.

This patch should be backported to 2.5.
diff --git a/src/ssl_ckch.c b/src/ssl_ckch.c
index c047b1c..3bd0610 100644
--- a/src/ssl_ckch.c
+++ b/src/ssl_ckch.c
@@ -2960,7 +2960,7 @@
 		if (ca_index && ca_index-1 != i)
 			continue;
 
-		chunk_appendf(out, "\nCertificate #%d:\n", i+1);
+		chunk_appendf(out, " \nCertificate #%d:\n", i+1);
 		retval = show_cert_detail(cert, NULL, out);
 		if (retval < 0)
 			goto end_no_putchk;
@@ -3619,7 +3619,7 @@
 		if (index && index-1 != i)
 			continue;
 
-		chunk_appendf(out, "\nCertificate Revocation List #%d:\n", i+1);
+		chunk_appendf(out, " \nCertificate Revocation List #%d:\n", i+1);
 		retval = show_crl_detail(crl, out);
 		if (retval < 0)
 			goto end_no_putchk;