From: Jouni Malinen Date: Sun, 30 Nov 2008 17:56:11 +0000 (+0200) Subject: WPS: Added more verbose debug info on authentication type mismatch X-Git-Tag: hostap_0_6_7~161 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=79d7d8efe7ed836f0eda76181544dd515f521ddf;p=thirdparty%2Fhostap.git WPS: Added more verbose debug info on authentication type mismatch --- diff --git a/src/wps/wps_registrar.c b/src/wps/wps_registrar.c index c3699a9b4..4b45c7dcd 100644 --- a/src/wps/wps_registrar.c +++ b/src/wps/wps_registrar.c @@ -1420,7 +1420,8 @@ static int wps_process_auth_type_flags(struct wps_data *wps, const u8 *auth) wps->auth_type = wps->wps->auth_types & auth_types; if (wps->auth_type == 0) { wpa_printf(MSG_DEBUG, "WPS: No match in supported " - "authentication types"); + "authentication types (own 0x%x Enrollee 0x%x)", + wps->wps->auth_types, auth_types); return -1; }