]> git.ipfire.org Git - thirdparty/hostap.git/commitdiff
DPP: Fix a debug print to use quotation marks consistently
authorJouni Malinen <j@w1.fi>
Sun, 25 Nov 2018 15:31:49 +0000 (17:31 +0200)
committerJouni Malinen <j@w1.fi>
Sun, 25 Nov 2018 15:31:49 +0000 (17:31 +0200)
The "DPP: Unexpected JWK kty" debug print missed one of the quotation
marks.

Signed-off-by: Jouni Malinen <j@w1.fi>
src/common/dpp.c

index 677f586929f329e756bc90b05f3af9d24691798c..702e3c303addc0b5d3a9dc463e43e32930eefddb 100644 (file)
@@ -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;
        }