aboutsummaryrefslogtreecommitdiffstats
path: root/epan/column-utils.c
diff options
context:
space:
mode:
authorOlivier Biot <obiot.ethereal@gmail.com>2004-03-18 19:04:33 +0000
committerOlivier Biot <obiot.ethereal@gmail.com>2004-03-18 19:04:33 +0000
commit11f92323360cffecc4b7f90efc76202e5762f8d3 (patch)
tree876959ab8c53334deb5cb8a35e7b7b596cf24152 /epan/column-utils.c
parentd714f1153f294fd9f2e28b9559a21e22c0f2d447 (diff)
From Lars Roland: Move timestamp_type into libethereal and provide accessor
methods for getting and setting the timestamp type. This is a move towards a real libethereal shared library. svn path=/trunk/; revision=10402
Diffstat (limited to 'epan/column-utils.c')
-rw-r--r--epan/column-utils.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/column-utils.c b/epan/column-utils.c
index 57a907b212..53e151b38f 100644
--- a/epan/column-utils.c
+++ b/epan/column-utils.c
@@ -1,7 +1,7 @@
/* column-utils.c
* Routines for column utilities.
*
- * $Id: column-utils.c,v 1.46 2004/02/29 08:47:11 guy Exp $
+ * $Id: column-utils.c,v 1.47 2004/03/18 19:04:32 obiot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -523,7 +523,7 @@ col_set_abs_time(frame_data *fd, column_info *cinfo, int col)
void
col_set_cls_time(frame_data *fd, column_info *cinfo, int col)
{
- switch (timestamp_type) {
+ switch (get_timestamp_setting()) {
case TS_ABSOLUTE:
col_set_abs_time(fd, cinfo, col);
break;