aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column-utils.c
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-11-29 06:44:07 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2006-11-29 06:44:07 +0000
commit59bc69178a145f9f46a06478eb139493f8212518 (patch)
tree8ec6fc9d92c3351e1dec0eec3a14a7a1290a6155 /epan/column-utils.c
parenta2e526a6ff264c1c6894a6529c99c55596ae44f1 (diff)
Froim Rene Pilz:
This patch consists also the last issues. Additionally it solves: - For the SSCOP frames the AAL5 decoding was not performed due to an earlier patch. This caused that no SSCOP message was properly decoded. - As the detection between a LANE frame and a SSCOP frame is rather hard a switch within the atm dissector is included which enforce SSCOP dissecting over a LANE frame. At the moment I do not see a better solution for that. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@20013 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/column-utils.c')
-rw-r--r--epan/column-utils.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/epan/column-utils.c b/epan/column-utils.c
index 4dcd891afd..550302b658 100644
--- a/epan/column-utils.c
+++ b/epan/column-utils.c
@@ -1242,6 +1242,10 @@ col_fill_in(packet_info *pinfo)
case COL_8021Q_VLAN_ID:
break;
+ case COL_FR_DLCI: /* done by packet-fr.c */
+ case COL_BSSGP_TLLI: /* done by packet-bssgp.c */
+ break;
+
case NUM_COL_FMTS: /* keep compiler happy - shouldn't get here */
g_assert_not_reached();
break;