Renamed shadowed variable

This commit is contained in:
Jouni Malinen 2009-01-13 19:31:51 +02:00
parent 61e64e7b7f
commit 0b8695bb2b

View File

@ -370,17 +370,17 @@ static struct wpabuf * eap_peap_build_phase2_tlv(struct eap_sm *sm,
u8 id) u8 id)
{ {
struct wpabuf *buf, *encr_req; struct wpabuf *buf, *encr_req;
size_t len; size_t mlen;
len = 6; /* Result TLV */ mlen = 6; /* Result TLV */
if (data->crypto_binding != NO_BINDING) if (data->crypto_binding != NO_BINDING)
len += 60; /* Cryptobinding TLV */ mlen += 60; /* Cryptobinding TLV */
#ifdef EAP_TNC #ifdef EAP_TNC
if (data->soh_response) if (data->soh_response)
len += wpabuf_len(data->soh_response); mlen += wpabuf_len(data->soh_response);
#endif /* EAP_TNC */ #endif /* EAP_TNC */
buf = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_TLV, len, buf = eap_msg_alloc(EAP_VENDOR_IETF, EAP_TYPE_TLV, mlen,
EAP_CODE_REQUEST, id); EAP_CODE_REQUEST, id);
if (buf == NULL) if (buf == NULL)
return NULL; return NULL;