aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2001-05-23 18:52:54 +0000
committerGuy Harris <guy@alum.mit.edu>2001-05-23 18:52:54 +0000
commit35df6d1a291605ca56834d17d9fb8ba099d119d6 (patch)
treed77d800902f2bfe5b4d0e601db14de41002c508e
parent315a43b5e3c0f40c9a0d1a8a0998dfe049bac572 (diff)
Get rid of an extra colon on a field name, and display that field using
that name. svn path=/trunk/; revision=3438
-rw-r--r--packet-isis.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/packet-isis.c b/packet-isis.c
index 4bb6d21d56..cda0923a1f 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.19 2001/03/30 10:51:50 guy Exp $
+ * $Id: packet-isis.c,v 1.20 2001/05/23 18:52:54 guy Exp $
* Stuart Stanley <stuarts@mxmail.net>
*
* Ethereal - Network traffic analyzer
@@ -175,7 +175,7 @@ dissect_isis(const u_char *pd, int offset, frame_data *fd,
offset + 3, 1, ihdr->isis_system_id_len );
proto_tree_add_uint_format(isis_tree, hf_isis_type, NullTVB,
offset + 4, 1, ihdr->isis_type,
- "Type : %s (R:%s%s%s)",
+ "PDU Type : %s (R:%s%s%s)",
val_to_str(ihdr->isis_type & ISIS_TYPE_MASK, isis_vals,
"Unknown (0x%x)"),
(ihdr->isis_type & ISIS_R8_MASK) ? "1" : "0",
@@ -305,7 +305,7 @@ proto_register_isis(void) {
FT_UINT8, BASE_DEC, NULL, 0x0, "" }},
{ &hf_isis_type,
- { "PDU Type :", "isis.type", FT_UINT8, BASE_DEC,
+ { "PDU Type ", "isis.type", FT_UINT8, BASE_DEC,
VALS(isis_vals), 0xff, "" }},
{ &hf_isis_version2,