aboutsummaryrefslogtreecommitdiffstats
path: root/packet-eap.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2002-02-25 23:55:21 +0000
committerGuy Harris <guy@alum.mit.edu>2002-02-25 23:55:21 +0000
commitcd055b0b62ac2f465ad624370515c746dba714dc (patch)
treebbf0d71900a78a479fdb871b043f68ebff2151a2 /packet-eap.c
parent3cb971dd8084b7793e54c414b0599eaa388cd206 (diff)
Don't give the raw data for SSL-encapsulated stuff in an EAP message its
own protocol tree item; instead, use the SSL protocol tree for that, and put it under the EAP tree. (I infer from mail from Adam Sulmicki that this is a change he had but couldn't generate and submit due to CVS problems.) svn path=/trunk/; revision=4808
Diffstat (limited to 'packet-eap.c')
-rw-r--r--packet-eap.c6
1 files changed, 2 insertions, 4 deletions
diff --git a/packet-eap.c b/packet-eap.c
index e72e4e0f34..3c22d00531 100644
--- a/packet-eap.c
+++ b/packet-eap.c
@@ -2,7 +2,7 @@
* Routines for EAP Extensible Authentication Protocol dissection
* RFC 2284
*
- * $Id: packet-eap.c,v 1.12 2002/02/25 23:28:32 guy Exp $
+ * $Id: packet-eap.c,v 1.13 2002/02/25 23:55:21 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -170,10 +170,8 @@ dissect_eap_pdu(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree,
if (size>0) {
tvbuff_t *next_tvb;
- proto_tree_add_text(eap_tree, tvb, offset, size,
- "Data (%i)",size);
next_tvb = tvb_new_subset(tvb, offset, size, size);
- call_dissector(ssl_handle, next_tvb, pinfo, tree);
+ call_dissector(ssl_handle, next_tvb, pinfo, eap_tree);
}
}
break;