Shorten the text of System Name and System Description in the info column

Change-Id: I77056fe7baadc6cec0662d513d2e18c9e80d2726
Reviewed-on: https://code.wireshark.org/review/28446
Reviewed-by: Jörg Mayer <jmayer@loplof.de>
This commit is contained in:
Joerg Mayer 2018-06-26 05:58:48 +02:00 committed by Jörg Mayer
parent ef27a2c21c
commit b0a25f4443
1 changed files with 2 additions and 2 deletions

View File

@ -1679,14 +1679,14 @@ dissect_lldp_system_name(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree
ett_system_name, NULL, "System Name = %s", strPtr);
if (column_info_selection == DEFAULT_COLUMN_INFO)
{
col_append_fstr(pinfo->cinfo, COL_INFO, "System Name = %s ", strPtr);
col_append_fstr(pinfo->cinfo, COL_INFO, "SysName = %s ", strPtr);
}
} else {
system_subtree = proto_tree_add_subtree_format(tree, tvb, offset, (dataLen + 2),
ett_system_desc, NULL, "System Description = %s", strPtr);
if (column_info_selection == DEFAULT_COLUMN_INFO)
{
col_append_fstr(pinfo->cinfo, COL_INFO, "System Description = %s ", strPtr);
col_append_fstr(pinfo->cinfo, COL_INFO, "SysDesc = %s ", strPtr);
}
}