summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2017-06-21 14:43:04 +0200
committerMichael Mann <mmann78@netscape.net>2017-06-21 13:51:08 +0000
commit9277e9609d0c59592481212e6825190de09a6b5f (patch)
tree48329f49e4efcbbea2f0d9b6101f91ba6086fd82
parentc71a7c7f43641362d363d2e88d305a8693f573b2 (diff)
downloadwireshark-9277e9609d0c59592481212e6825190de09a6b5f.tar.gz
ISIS LSP: fix wrong bitmask for SPVID
Issue reported by Bo-Han Liao Bug: 13821 Change-Id: I74641bef723e747bfe5fa87e946b7f4f74b94bf6 Reviewed-on: https://code.wireshark.org/review/22299 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net> (cherry picked from commit 855484fbd98c8c01f5a84902243389e07e32b6e9) Reviewed-on: https://code.wireshark.org/review/22300
-rw-r--r--epan/dissectors/packet-isis-lsp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-isis-lsp.c b/epan/dissectors/packet-isis-lsp.c
index 53d444df90..1070d147c1 100644
--- a/epan/dissectors/packet-isis-lsp.c
+++ b/epan/dissectors/packet-isis-lsp.c
@@ -4457,7 +4457,7 @@ proto_register_isis_lsp(void)
},
{ &hf_isis_lsp_mt_cap_spb_instance_vlanid_tuple_spvid,
{ "SPVID", "isis.lsp.mt_cap_spb_instance.vlanid_tuple.spvid",
- FT_UINT24, BASE_DEC, NULL, 0xFFF000,
+ FT_UINT24, BASE_DEC, NULL, 0x000FFF,
NULL, HFILL }
},
{ &hf_isis_lsp_mt_cap_spb_opaque_algorithm,