summaryrefslogtreecommitdiff
path: root/epan
diff options
context:
space:
mode:
authorJoerg Mayer <jmayer@loplof.de>2016-02-13 14:56:08 +0100
committerJörg Mayer <jmayer@loplof.de>2016-02-13 14:04:17 +0000
commitb550c33d4a95f778cf56154fd0efc96db29b0127 (patch)
tree3b0e7f5be6e3a43144ae1814b24de943290a031b /epan
parent378c59bfae5c9111f79b88665b008e796134512b (diff)
downloadwireshark-b550c33d4a95f778cf56154fd0efc96db29b0127.tar.gz
Dissection of SSAPs is a bit weird. 0x1 would be displayed as ">Unknown (0x01)"
on my particular trace. This duplicates the value with the C/R-bit set. Needs a proper fix eventually. Small indentation fix. Change-Id: I6bf7c560b5161994b8d90d7ae70724c03c6df73b Reviewed-on: https://code.wireshark.org/review/13926 Reviewed-by: Jörg Mayer <jmayer@loplof.de>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-llc.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/dissectors/packet-llc.c b/epan/dissectors/packet-llc.c
index dfd2b17863..4d6a8a69bb 100644
--- a/epan/dissectors/packet-llc.c
+++ b/epan/dissectors/packet-llc.c
@@ -137,6 +137,7 @@ static dissector_handle_t data_handle;
*/
const value_string sap_vals[] = {
{ SAP_NULL, "NULL LSAP" },
+ { SAP_NULL+1, "NULL LSAP" },
{ SAP_LLC_SLMGMT, "LLC Sub-Layer Management" },
{ SAP_SNA_PATHCTRL, "SNA Path Control" },
{ SAP_IP, "TCP/IP" },
@@ -821,7 +822,7 @@ proto_register_llc(void)
"LLC SAP", FT_UINT8, BASE_HEX, DISSECTOR_TABLE_NOT_ALLOW_DUPLICATE);
xid_subdissector_table = register_dissector_table("llc.xid_dsap",
"LLC XID SAP", FT_UINT8, BASE_HEX, DISSECTOR_TABLE_NOT_ALLOW_DUPLICATE);
- register_capture_dissector_table("llc.dsap", "LLC");
+ register_capture_dissector_table("llc.dsap", "LLC");
register_dissector("llc", dissect_llc, proto_llc);
}