From: Jouni Malinen Date: Sat, 20 Dec 2014 22:40:30 +0000 (+0200) Subject: EAP-IKEv2 peer: Fix fragmentation reassembly X-Git-Tag: hostap_2_4~714 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bb68a6e3cc943b0738086332919bc4d836a41386;p=thirdparty%2Fhostap.git EAP-IKEv2 peer: Fix fragmentation reassembly ret->ignore needs to be cleared to FALSE when sending fragment ack message to avoid ignoring the fragment. Signed-off-by: Jouni Malinen --- diff --git a/src/eap_peer/eap_ikev2.c b/src/eap_peer/eap_ikev2.c index cbdf931c4..b5ef71bac 100644 --- a/src/eap_peer/eap_ikev2.c +++ b/src/eap_peer/eap_ikev2.c @@ -322,6 +322,7 @@ static struct wpabuf * eap_ikev2_process_fragment(struct eap_ikev2_data *data, (unsigned long) wpabuf_tailroom(data->in_buf)); } + ret->ignore = FALSE; return eap_ikev2_build_frag_ack(id, EAP_CODE_RESPONSE); }