From: Jouni Malinen Date: Sat, 1 Mar 2025 18:12:25 +0000 (+0200) Subject: DPP: Add an explicit debug print for failed to build DPPEnvelopedData X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=c0b180d9400b8099b33146b964a656df4154fdd3;p=thirdparty%2Fhostap.git DPP: Add an explicit debug print for failed to build DPPEnvelopedData This is an operation that can fail if OpenSSL is forced to use the fips provider, so it is helpful to get this failure case clearer in the debug log. Signed-off-by: Jouni Malinen --- diff --git a/src/common/dpp_backup.c b/src/common/dpp_backup.c index fb3f776d2..1e92a14fd 100644 --- a/src/common/dpp_backup.c +++ b/src/common/dpp_backup.c @@ -515,6 +515,7 @@ out: wpabuf_free(enc_cont_info); return env; fail: + wpa_printf(MSG_INFO, "DPP: Failed to build DPPEnvelopedData"); wpabuf_free(env); env = NULL; goto out;