aboutsummaryrefslogtreecommitdiffstats
path: root/packet-isis.c
diff options
context:
space:
mode:
authorgram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2000-03-20 22:52:48 +0000
committergram <gram@f5534014-38df-0310-8fa8-9805f1628bb7>2000-03-20 22:52:48 +0000
commitfde3ddd0e6a8ae3edb0d8778f247ff17941207bf (patch)
tree98d32c0fb8a29652085167d2cef6efc6e780eecb /packet-isis.c
parent3c5a92799370dfc266faafb485e7b17f2fe2fdd9 (diff)
Change dfilter_init() to check for empty-string abbreviations and for
duplicate abbreviations. All mods to packet-*.c files are fixes to remove those cases. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@1733 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-isis.c')
-rw-r--r--packet-isis.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-isis.c b/packet-isis.c
index 5d635e1604..f09e2757ea 100644
--- a/packet-isis.c
+++ b/packet-isis.c
@@ -2,7 +2,7 @@
* Routines for ISO/OSI network and transport protocol packet disassembly, core
* bits.
*
- * $Id: packet-isis.c,v 1.4 2000/03/12 04:47:41 gram Exp $
+ * $Id: packet-isis.c,v 1.5 2000/03/20 22:52:43 gram Exp $
* Stuart Stanley <stuarts@mxmail.net>
*
* Ethereal - Network traffic analyzer
@@ -343,7 +343,7 @@ proto_register_isis(void) {
&ett_isis,
};
- proto_isis = proto_register_protocol("clnp ISIS", "ISIS");
+ proto_isis = proto_register_protocol("clnp ISIS", "isis");
proto_register_field_array(proto_isis, hf, array_length(hf));
proto_register_subtree_array(ett, array_length(ett));
}