aboutsummaryrefslogtreecommitdiffstats
path: root/epan/prefs.c
diff options
context:
space:
mode:
authorkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-08 14:26:09 +0000
committerkrj <krj@f5534014-38df-0310-8fa8-9805f1628bb7>2009-09-08 14:26:09 +0000
commit7e7359b7647018352321f7abdb3141f796423864 (patch)
tree019a124a57e5c2e8f72c6bc46b205ec2808c931a /epan/prefs.c
parentfe568a4feabaaaa5b9fcfc2a44a053162242b6ea (diff)
Custom column deprecation:
We fill out the COL_SRCIDX column by using 'pinfo->src_idx'. This member is only set by the MDS Header dissector based on 'mdshdr.srcidx'. So remove COL_SRCIDX and migrate to 'mdshdr.srcidx' custom column. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@29794 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/prefs.c')
-rw-r--r--epan/prefs.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/prefs.c b/epan/prefs.c
index 1dae9febc2..cb71aa153f 100644
--- a/epan/prefs.c
+++ b/epan/prefs.c
@@ -1762,7 +1762,8 @@ try_convert_to_custom_column(gpointer *el_data)
{ COL_REL_CONV_TIME, "tcp.time_relative" },
{ COL_DELTA_CONV_TIME, "tcp.time_delta" },
{ COL_OXID, "fc.ox_id" },
- { COL_RXID, "fc.rx_id" }
+ { COL_RXID, "fc.rx_id" },
+ { COL_SRCIDX, "mdshdr.srcidx" }
};
guint haystack_idx;