From 6ede7269d436ab362cf945a497044a831a092196 Mon Sep 17 00:00:00 2001 From: Fabian Keil Date: Fri, 11 Sep 2020 14:51:39 +0200 Subject: [PATCH] ssl_store_cert(): Fix format specifiers in a log message --- openssl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openssl.c b/openssl.c index 3cf65e5f..56dc52a3 100644 --- a/openssl.c +++ b/openssl.c @@ -301,7 +301,7 @@ static int ssl_store_cert(struct client_state *csp, X509* crt) if (len > (sizeof(last->file_buf) - 1)) { log_error(LOG_LEVEL_ERROR, - "X509 PEM cert len %d is larger than buffer len %d", + "X509 PEM cert len %ld is larger than buffer len %lu", len, sizeof(last->file_buf) - 1); len = sizeof(last->file_buf) - 1; } -- 2.39.2