diff options
author | Stephen Fisher <steve@stephen-fisher.com> | 2007-03-23 18:08:17 +0000 |
---|---|---|
committer | Stephen Fisher <steve@stephen-fisher.com> | 2007-03-23 18:08:17 +0000 |
commit | 6d8d2854c8cf998605e041987610986d09375c6a (patch) | |
tree | 49c7db39b4c44d02429daa16149f2ba63678af4e /epan/column_info.h | |
parent | 62f88a4a04d8e300ff108f6164e9016e8cdcc9c3 (diff) | |
download | wireshark-6d8d2854c8cf998605e041987610986d09375c6a.tar.gz wireshark-6d8d2854c8cf998605e041987610986d09375c6a.tar.bz2 wireshark-6d8d2854c8cf998605e041987610986d09375c6a.zip |
From Sake Blok:
Fix for bug #491: Unexpected frame.time_delta behavior
This patch ... fixes bug 491. It does this by changing the
behaviour of the frame.time_delta field so it reflects the delta
time between captured packets (tshark already did this). To keep
the delta time between displayed packets, the field
frame.time_delta_displayed is created.
svn path=/trunk/; revision=21154
Diffstat (limited to 'epan/column_info.h')
-rw-r--r-- | epan/column_info.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/epan/column_info.h b/epan/column_info.h index ad91439d4d..67e0ebd21f 100644 --- a/epan/column_info.h +++ b/epan/column_info.h @@ -62,6 +62,7 @@ enum { COL_ABS_TIME, /* Absolute time */ COL_ABS_DATE_TIME, /* Absolute date and time */ COL_DELTA_TIME, /* Delta time */ + COL_DELTA_TIME_DIS, /* Delta time displayed*/ COL_DEF_SRC, /* Source address */ COL_RES_SRC, /* Resolved source */ COL_UNRES_SRC, /* Unresolved source */ |