diff options
author | Guy Harris <guy@alum.mit.edu> | 2003-03-31 07:37:23 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2003-03-31 07:37:23 +0000 |
commit | f7b398f799f40dde3b7f206ee82392c5c5eea142 (patch) | |
tree | 89a735be47e667dffa9ed732eac086769fe213ef /packet-isis-lsp.c | |
parent | 60b0e6177243548a7cd860652c599e745a61325b (diff) | |
download | wireshark-f7b398f799f40dde3b7f206ee82392c5c5eea142.tar.gz wireshark-f7b398f799f40dde3b7f206ee82392c5c5eea142.tar.bz2 wireshark-f7b398f799f40dde3b7f206ee82392c5c5eea142.zip |
The "attached_string" doesn't apply to the attachments, so call it
"supported_string", instead, as it is used to indicate whether partition
repair is supported.
Fix a typo.
svn path=/trunk/; revision=7384
Diffstat (limited to 'packet-isis-lsp.c')
-rw-r--r-- | packet-isis-lsp.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/packet-isis-lsp.c b/packet-isis-lsp.c index 4cdd409e0b..3de09a4683 100644 --- a/packet-isis-lsp.c +++ b/packet-isis-lsp.c @@ -1,7 +1,7 @@ /* packet-isis-lsp.c * Routines for decoding isis lsp packets and their CLVs * - * $Id: packet-isis-lsp.c,v 1.38 2003/03/30 22:10:13 guy Exp $ + * $Id: packet-isis-lsp.c,v 1.39 2003/03/31 07:37:23 guy Exp $ * Stuart Stanley <stuarts@mxmail.net> * * Ethereal - Network traffic analyzer @@ -90,7 +90,7 @@ static const value_string isis_lsp_istype_vals[] = { { ISIS_LSP_TYPE_LEVEL_2, "Level 2"}, { 0, NULL } }; -static const true_false_string attached_string = { +static const true_false_string supported_string = { "Supported", "Unsupported" }; @@ -1796,7 +1796,7 @@ isis_register_lsp(int proto_isis) { { &hf_isis_lsp_p, { "Partition Repair", "isis.lsp.partition_repair", FT_BOOLEAN, 8, - TFS(&attached_string), ISIS_LSP_PARTITION_MASK, + TFS(&supported_string), ISIS_LSP_PARTITION_MASK, "If set, this router supports the optional Partion Repair function", HFILL }}, { &hf_isis_lsp_att, @@ -1810,7 +1810,7 @@ isis_register_lsp(int proto_isis) { "If set, this router will not be used by any decision process to calculate routes", HFILL }}, { &hf_isis_lsp_is_type, - { "Type of Intermadiate System", "isis.lsp.is_type", FT_UINT8, BASE_DEC, + { "Type of Intermediate System", "isis.lsp.is_type", FT_UINT8, BASE_DEC, VALS(isis_lsp_istype_vals), ISIS_LSP_IS_TYPE_MASK, "", HFILL }}, }; |