From 06e62e11c7cd80e2c41d3b4988a5b15c6bc497ed Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 25 Nov 2018 17:31:49 +0200 Subject: [PATCH] DPP: Fix a debug print to use quotation marks consistently The "DPP: Unexpected JWK kty" debug print missed one of the quotation marks. Signed-off-by: Jouni Malinen --- src/common/dpp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/dpp.c b/src/common/dpp.c index 677f58692..702e3c303 100644 --- a/src/common/dpp.c +++ b/src/common/dpp.c @@ -4757,7 +4757,7 @@ static EVP_PKEY * dpp_parse_jwk(struct json_token *jwk, goto fail; } if (os_strcmp(token->string, "EC") != 0) { - wpa_printf(MSG_DEBUG, "DPP: Unexpected JWK kty '%s", + wpa_printf(MSG_DEBUG, "DPP: Unexpected JWK kty '%s'", token->string); goto fail; } -- 2.47.2