aboutsummaryrefslogtreecommitdiffstats
path: root/packet-eapol.c
diff options
context:
space:
mode:
Diffstat (limited to 'packet-eapol.c')
-rw-r--r--packet-eapol.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/packet-eapol.c b/packet-eapol.c
index de6bbae858..38c3b4c49d 100644
--- a/packet-eapol.c
+++ b/packet-eapol.c
@@ -1,7 +1,7 @@
/* packet-eapol.c
* Routines for EAPOL 802.1X authentication header disassembly
*
- * $Id: packet-eapol.c,v 1.2 2001/11/26 04:52:49 hagbard Exp $
+ * $Id: packet-eapol.c,v 1.3 2001/12/03 03:59:34 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -137,6 +137,9 @@ proto_register_eapol(void)
void
proto_reg_handoff_eapol(void)
{
+ dissector_handle_t eapol_handle;
+
data_handle = find_dissector("data");
- dissector_add("ethertype", ETHERTYPE_EAPOL, dissect_eapol, proto_eapol);
+ eapol_handle = create_dissector_handle(dissect_eapol, proto_eapol);
+ dissector_add("ethertype", ETHERTYPE_EAPOL, eapol_handle);
}