WPS ER: Fix debug message for protocol run done case

This is not a failure and should not be indicated as such in the
debug log.
This commit is contained in:
Jouni Malinen 2010-09-22 19:19:33 -07:00 committed by Jouni Malinen
parent 3237bfb1a3
commit 2d5e0d78e9

View file

@ -1563,6 +1563,10 @@ static void wps_er_ap_process(struct wps_er_ap *ap, struct wpabuf *msg)
wps_deinit(ap->wps);
ap->wps = NULL;
}
} else if (res == WPS_DONE) {
wpa_printf(MSG_DEBUG, "WPS ER: Protocol run done");
wps_deinit(ap->wps);
ap->wps = NULL;
} else {
wpa_printf(MSG_DEBUG, "WPS ER: Failed to process message from "
"AP (res=%d)", res);