aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column.c
diff options
context:
space:
mode:
authorKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-08-23 12:24:14 +0000
committerKovarththanan Rajaratnam <kovarththanan.rajaratnam@gmail.com>2009-08-23 12:24:14 +0000
commitb9cbd15469220b18b198b19d182b72827ae10911 (patch)
tree93f8af58bfe08565f44cccaabbcb2bf180c59240 /epan/column.c
parent55cf35e3a01a8c3dfb9fb6219fa494fe22ce4df5 (diff)
downloadwireshark-b9cbd15469220b18b198b19d182b72827ae10911.tar.gz
wireshark-b9cbd15469220b18b198b19d182b72827ae10911.tar.bz2
wireshark-b9cbd15469220b18b198b19d182b72827ae10911.zip
Custom columnfication:
* Deprecate COL_REL_CONV_TIME (Relative time (conversation)). Use tcp.time_relative svn path=/trunk/; revision=29523
Diffstat (limited to 'epan/column.c')
-rw-r--r--epan/column.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/column.c b/epan/column.c
index 47bc8e79e7..f64759b7cf 100644
--- a/epan/column.c
+++ b/epan/column.c
@@ -97,7 +97,7 @@ col_format_to_string(gint fmt) {
"%L", /* 47) COL_PACKET_LENGTH */
"%p", /* 48) COL_PROTOCOL */
"%Rt", /* 49) COL_REL_TIME */
- "%rct", /* 50) COL_REL_CONV_TIME */
+ "%rct", /* 50) !! DEPRECATED !! - COL_REL_CONV_TIME */
"%s", /* 51) COL_DEF_SRC */
"%S", /* 52) COL_DEF_SRC_PORT */
"%rs", /* 53) COL_RES_SRC */
@@ -167,7 +167,7 @@ static const gchar *dlist[NUM_COL_FMTS] = {
"Packet length (bytes)" , /* 47) COL_PACKET_LENGTH */
"Protocol", /* 48) COL_PROTOCOL */
"Relative time", /* 49) COL_REL_TIME */
- "Relative time (conversation)", /* 50) COL_REL_CONV_TIME */
+ "Relative time (conversation)", /* 50) !! DEPRECATED !! - COL_REL_CONV_TIME */
"Source address", /* 51) COL_DEF_SRC */
"Source port", /* 52) COL_DEF_SRC_PORT */
"Src addr (resolved)", /* 53) COL_RES_SRC */