summaryrefslogtreecommitdiff
path: root/column.c
diff options
context:
space:
mode:
Diffstat (limited to 'column.c')
-rw-r--r--column.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/column.c b/column.c
index c92b392acd..125ba546bf 100644
--- a/column.c
+++ b/column.c
@@ -1,7 +1,7 @@
/* column.c
* Routines for handling column preferences
*
- * $Id: column.c,v 1.46 2004/01/31 04:10:04 guy Exp $
+ * $Id: column.c,v 1.47 2004/03/18 19:04:30 obiot Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -212,9 +212,9 @@ get_column_longest_string(gint format)
return "0000000";
break;
case COL_CLS_TIME:
- if (timestamp_type == TS_ABSOLUTE)
+ if (get_timestamp_setting() == TS_ABSOLUTE)
return "00:00:00.000000";
- else if (timestamp_type == TS_ABSOLUTE_WITH_DATE)
+ else if (get_timestamp_setting() == TS_ABSOLUTE_WITH_DATE)
return "0000-00-00 00:00:00.000000";
else
return "0000.000000";