From: Jouni Malinen Date: Sun, 25 Nov 2018 15:31:49 +0000 (+0200) Subject: DPP: Fix a debug print to use quotation marks consistently X-Git-Tag: hostap_2_7~63 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=06e62e11c7cd80e2c41d3b4988a5b15c6bc497ed;p=thirdparty%2Fhostap.git 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 --- 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; }