From: Guy Harris Date: Sun, 14 Nov 2021 02:50:53 +0000 (-0800) Subject: EAP: clean up white space. X-Git-Url: https://git.tcpdump.org/tcpdump/commitdiff_plain/409a40376716044c9c2d3dd30619798e10f6f1bb EAP: clean up white space. --- diff --git a/print-eap.c b/print-eap.c index 04acccb2..f8a732af 100644 --- a/print-eap.c +++ b/print-eap.c @@ -156,7 +156,7 @@ eap_print(netdissect_options *ndo, type = GET_U_1(cp); len = GET_BE_U_2(cp + 2); - if(len != length) { + if (len != length) { /* * Probably a fragment; in some cases the fragmentation might * not put an EAP header on every packet, if reassembly can @@ -192,7 +192,7 @@ eap_print(netdissect_options *ndo, switch (subtype) { case EAP_TYPE_IDENTITY: /* According to RFC 3748, the message is optional */ - if (len > 5 ) { + if (len > 5) { ND_PRINT(", Identity: "); nd_printjnp(ndo, cp + 5, len - 5); }