From 7fdafed7f2b4c23901cfb576c65d91502b8c72d5 Mon Sep 17 00:00:00 2001 From: Donald Buczek Date: Mon, 3 May 2021 09:30:51 +0200 Subject: [PATCH] common.h: Fix formating in psslerror() --- common.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common.h b/common.h index e9c8c68..259ff7a 100644 --- a/common.h +++ b/common.h @@ -37,7 +37,7 @@ static void __attribute__((unused)) free_string(char **ptr) { } static void psslerror(char *str) { - fprintf(stderr, str); + fprintf(stderr, "%s\n", str); ERR_print_errors_fp(stderr); }