From d1e17fbc9c5f5c22c2694fd1205334fcbd2f49ba Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 17 Oct 2010 20:57:11 +0300 Subject: [PATCH] WPS: Schedule sending of pending events after failure There is no point leaving these pending events waiting for something new to trigger us to continue. --- src/wps/wps_upnp_event.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/wps/wps_upnp_event.c b/src/wps/wps_upnp_event.c index 31ce824..6555f9e 100644 --- a/src/wps/wps_upnp_event.c +++ b/src/wps/wps_upnp_event.c @@ -132,6 +132,8 @@ static void event_retry(struct wps_event_ *e, int do_next_address) wpa_printf(MSG_DEBUG, "WPS UPnP: Giving up on sending event " "for %s", e->addr->domain_and_port); event_delete(e); + if (!dl_list_empty(&s->event_queue)) + event_send_all_later(s->sm); return; } dl_list_add(&s->event_queue, &e->list); -- 2.1.4