From 30769113302a3e8b8197d14f5d2873020f734bcd Mon Sep 17 00:00:00 2001 From: guy Date: Sat, 19 Dec 2009 03:17:44 +0000 Subject: For fields of type FT_ABSOLUTE_TIME, have the "display" value be one of ABSOLUTE_TIME_LOCAL or ABSOLUTE_TIME_UTC, indicating whether to display the date/time in local time or UTC. (int)ABSOLUTE_TIME_LOCAL == (int)BASE_NONE, so there's no source or binary compatiblity issue, although we might want to eliminate BASE_NONE at some point and have the BASE_ values used with integral types start at 0, so that you can't specify BASE_NONE for an integral field. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@31319 f5534014-38df-0310-8fa8-9805f1628bb7 --- epan/dissectors/packet-h225.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'epan/dissectors/packet-h225.c') diff --git a/epan/dissectors/packet-h225.c b/epan/dissectors/packet-h225.c index 0567e9a1d5..5dbf0e1cff 100644 --- a/epan/dissectors/packet-h225.c +++ b/epan/dissectors/packet-h225.c @@ -9119,7 +9119,7 @@ void proto_register_h225(void) { "h225.AliasAddress", HFILL }}, { &hf_h225_timeStamp, { "timeStamp", "h225.timeStamp", - FT_ABSOLUTE_TIME, BASE_NONE, NULL, 0, + FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL, NULL, 0, "h235.TimeStamp", HFILL }}, { &hf_h225_token, { "token", "h225.token", @@ -9451,15 +9451,15 @@ void proto_register_h225(void) { "h225.NonStandardParameter", HFILL }}, { &hf_h225_alertingTime, { "alertingTime", "h225.alertingTime", - FT_ABSOLUTE_TIME, BASE_NONE, NULL, 0, + FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL, NULL, 0, "h235.TimeStamp", HFILL }}, { &hf_h225_connectTime, { "connectTime", "h225.connectTime", - FT_ABSOLUTE_TIME, BASE_NONE, NULL, 0, + FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL, NULL, 0, "h235.TimeStamp", HFILL }}, { &hf_h225_endTime, { "endTime", "h225.endTime", - FT_ABSOLUTE_TIME, BASE_NONE, NULL, 0, + FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL, NULL, 0, "h235.TimeStamp", HFILL }}, { &hf_h225_releaseCompleteCauseIE, { "releaseCompleteCauseIE", "h225.releaseCompleteCauseIE", -- cgit v1.2.3