Commit 917ebfca5c for openssl.org
commit 917ebfca5cd36c8428b8b495456983cf08c22aeb
Author: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com>
Date: Sat Jul 4 12:03:53 2026 +0200
Eliminate unnecessary whitespace before a quoted newline
Found by running the checkpatch.pl Linux script to enforce coding style.
Reviewed-by: Kurt Roeckx <kurt@roeckx.be>
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Norbert Pocs <norbertp@openssl.org>
Reviewed-by: Eugene Syromiatnikov <esyr@openssl.org>
MergeDate: Wed Jul 8 10:11:22 2026
(Merged from https://github.com/openssl/openssl/pull/31860)
diff --git a/apps/s_server.c b/apps/s_server.c
index e1c601589b..4d99e5442b 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -462,7 +462,7 @@ typedef struct tlsextctx_st {
static unsigned int ech_print_cb(SSL *s, const char *str)
{
if (str != NULL)
- BIO_printf(bio_s_out, "ECH Server callback printing: \n%s\n", str);
+ BIO_printf(bio_s_out, "ECH Server callback printing:\n%s\n", str);
return 1;
}
diff --git a/providers/implementations/kem/template_kem.c b/providers/implementations/kem/template_kem.c
index 509a31e129..448b1caf4e 100644
--- a/providers/implementations/kem/template_kem.c
+++ b/providers/implementations/kem/template_kem.c
@@ -166,7 +166,7 @@ static int template_decapsulate(void *vctx, unsigned char *out, size_t *outlen,
if (out == NULL) {
if (outlen != NULL)
- debug_print("decaps outlen set to %zu \n", *outlen);
+ debug_print("decaps outlen set to %zu\n", *outlen);
return 1;
}