From 4fdbc302210af83a5bec4cb860200c01b2a74c08 Mon Sep 17 00:00:00 2001 From: Martin Stjernholm <mast@lysator.liu.se> Date: Fri, 14 May 1999 01:07:18 +0200 Subject: [PATCH] Removed extra newline in simple_build_pem() to comply with defacto standard. Rev: lib/modules/Tools.pmod/PEM.pmod:1.6 --- lib/modules/Tools.pmod/PEM.pmod | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/modules/Tools.pmod/PEM.pmod b/lib/modules/Tools.pmod/PEM.pmod index 35b5383c31..22e69a56de 100644 --- a/lib/modules/Tools.pmod/PEM.pmod +++ b/lib/modules/Tools.pmod/PEM.pmod @@ -227,7 +227,7 @@ class pem_msg /* Doesn't use general rfc934 headers and boundaries */ string simple_build_pem(string tag, string data) { - return sprintf("-----BEGIN %s-----\n\n" + return sprintf("-----BEGIN %s-----\n" "%s\n" "-----END %s-----\n", tag, MIME.encode_base64(data), tag); -- GitLab