summaryrefslogtreecommitdiff
path: root/packet-esis.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-02-25 19:07:07 +0000
committerGuy Harris <guy@alum.mit.edu>2003-02-25 19:07:07 +0000
commit0462c4d80609913943178d83e191d34fb97bf218 (patch)
tree296fd6040e3410a999d8c3c7372c9c7c90c9d8d3 /packet-esis.c
parent5c8110c0a84ba92984af1cb32f02f561b06f32a0 (diff)
downloadwireshark-0462c4d80609913943178d83e191d34fb97bf218.tar.gz
From Laurent Meyer: register the ESIS dissector by name, so it can be
called from other dissectors. svn path=/trunk/; revision=7198
Diffstat (limited to 'packet-esis.c')
-rw-r--r--packet-esis.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/packet-esis.c b/packet-esis.c
index ce9a5596da..eda2b05585 100644
--- a/packet-esis.c
+++ b/packet-esis.c
@@ -2,7 +2,7 @@
* Routines for ISO/OSI End System to Intermediate System
* Routing Exchange Protocol ISO 9542.
*
- * $Id: packet-esis.c,v 1.27 2002/08/28 21:00:13 jmayer Exp $
+ * $Id: packet-esis.c,v 1.28 2003/02/25 19:07:07 guy Exp $
* Ralf Schneider <Ralf.Schneider@t-online.de>
*
* Ethereal - Network traffic analyzer
@@ -441,5 +441,6 @@ proto_reg_handoff_esis(void)
dissector_handle_t esis_handle;
esis_handle = create_dissector_handle(dissect_esis, proto_esis);
+ register_dissector("esis", dissect_esis, proto_esis);
dissector_add("osinl", NLPID_ISO9542_ESIS, esis_handle);
}