aboutsummaryrefslogtreecommitdiffstats
path: root/packet-frame.c
diff options
context:
space:
mode:
authorsahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-12 04:52:55 +0000
committersahlberg <sahlberg@f5534014-38df-0310-8fa8-9805f1628bb7>2003-09-12 04:52:55 +0000
commitf9dc1d0be507d2203414410fdccc237a52714149 (patch)
tree542af5954d6bfdf8dfc035d87c7edcda1534c269 /packet-frame.c
parentafd8425d2a3d98caf2926bb42a2653ae923ea4e7 (diff)
Attempt to prettify frame.time_relative
and some other fields git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@8460 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-frame.c')
-rw-r--r--packet-frame.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/packet-frame.c b/packet-frame.c
index e947f452d8..2e08d60889 100644
--- a/packet-frame.c
+++ b/packet-frame.c
@@ -2,7 +2,7 @@
*
* Top-most dissector. Decides dissector based on Wiretap Encapsulation Type.
*
- * $Id: packet-frame.c,v 1.37 2003/09/12 02:48:20 sahlberg Exp $
+ * $Id: packet-frame.c,v 1.38 2003/09/12 04:52:55 sahlberg Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -235,17 +235,17 @@ proto_register_frame(void)
static hf_register_info hf[] = {
{ &hf_frame_arrival_time,
{ "Arrival Time", "frame.time", FT_ABSOLUTE_TIME, BASE_NONE, NULL, 0x0,
- "", HFILL }},
+ "Absolute time when this frame was captured", HFILL }},
{ &hf_frame_time_delta,
{ "Time delta from previous packet", "frame.time_delta", FT_RELATIVE_TIME, BASE_NONE, NULL,
0x0,
- "", HFILL }},
+ "Time delta since previous diplayed frame", HFILL }},
{ &hf_frame_time_relative,
- { "Time relative to first packet", "frame.time_relative", FT_RELATIVE_TIME, BASE_NONE, NULL,
+ { "Time since reference or first frame", "frame.time_relative", FT_RELATIVE_TIME, BASE_NONE, NULL,
0x0,
- "Time relative to the previous *REF* frame, if any, or the first packet of the capture", HFILL }},
+ "Time relative reference or first frame", HFILL }},
{ &hf_frame_number,
{ "Frame Number", "frame.number", FT_UINT32, BASE_DEC, NULL, 0x0,