From: Jouni Malinen Date: Sun, 2 Jul 2017 09:36:11 +0000 (+0300) Subject: DPP: More debug for own connector configuration errors X-Git-Tag: hostap_2_7~1251 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=43fbb8db5bd504eefaa543b519472e507e07f2c5;p=thirdparty%2Fhostap.git DPP: More debug for own connector configuration errors This makes it easier to notice a reason for failure in cases a connector string has been truncated. Signed-off-by: Jouni Malinen --- diff --git a/src/common/dpp.c b/src/common/dpp.c index f564929ff..bfc0fde27 100644 --- a/src/common/dpp.c +++ b/src/common/dpp.c @@ -4522,12 +4522,16 @@ int dpp_peer_intro(struct dpp_introduction *intro, const char *own_connector, own_deviceid); pos = os_strchr(own_connector, '.'); - if (!pos) + if (!pos) { + wpa_printf(MSG_DEBUG, "DPP: Own connector is missing the first dot (.)"); goto fail; + } pos++; end = os_strchr(pos, '.'); - if (!end) + if (!end) { + wpa_printf(MSG_DEBUG, "DPP: Own connector is missing the second dot (.)"); goto fail; + } own_conn = base64_url_decode((const unsigned char *) pos, end - pos, &own_conn_len); if (!own_conn) {