From: Dimitri Papadopoulos <3234522+DimitriPapadopoulos@users.noreply.github.com> Date: Sat, 4 Jul 2026 10:03:53 +0000 (+0200) Subject: Eliminate unnecessary whitespace before a quoted newline X-Git-Url: http://git.ipfire.org/gitweb/?a=commitdiff_plain;h=917ebfca5cd36c8428b8b495456983cf08c22aeb;p=thirdparty%2Fopenssl.git Eliminate unnecessary whitespace before a quoted newline Found by running the checkpatch.pl Linux script to enforce coding style. Reviewed-by: Kurt Roeckx Reviewed-by: Neil Horman Reviewed-by: Norbert Pocs Reviewed-by: Eugene Syromiatnikov 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 e1c601589be..4d99e5442b2 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 509a31e1294..448b1caf4eb 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; }