aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-dcerpc-budb.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2009-12-19 03:17:44 +0000
committerGuy Harris <guy@alum.mit.edu>2009-12-19 03:17:44 +0000
commit8e236e55defb5555eb3dde620d49e3a67f74ad4b (patch)
tree5d4eb5c243515cc0bf128f763d68a574ac3b2f76 /epan/dissectors/packet-dcerpc-budb.c
parent220054bd43730e0a85ab04d9e3f495cefe08703f (diff)
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. svn path=/trunk/; revision=31319
Diffstat (limited to 'epan/dissectors/packet-dcerpc-budb.c')
-rw-r--r--epan/dissectors/packet-dcerpc-budb.c16
1 files changed, 8 insertions, 8 deletions
diff --git a/epan/dissectors/packet-dcerpc-budb.c b/epan/dissectors/packet-dcerpc-budb.c
index 438eac1f70..8e9ae92271 100644
--- a/epan/dissectors/packet-dcerpc-budb.c
+++ b/epan/dissectors/packet-dcerpc-budb.c
@@ -3886,12 +3886,12 @@ proto_register_budb(void)
NULL, HFILL }},
{ &hf_budb_dumpEntry_created,
- { "created", "budb.dumpEntry.created", FT_ABSOLUTE_TIME, BASE_NONE,
+ { "created", "budb.dumpEntry.created", FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL,
NULL, 0,
NULL, HFILL }},
{ &hf_budb_dumpEntry_incTime,
- { "incTime", "budb.dumpEntry.incTime", FT_ABSOLUTE_TIME, BASE_NONE,
+ { "incTime", "budb.dumpEntry.incTime", FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL,
NULL, 0,
NULL, HFILL }},
@@ -3941,12 +3941,12 @@ proto_register_budb(void)
NULL, HFILL }},
{ &hf_budb_tapeEntry_written,
- { "written", "budb.tapeEntry.written", FT_ABSOLUTE_TIME, BASE_NONE,
+ { "written", "budb.tapeEntry.written", FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL,
NULL, 0,
NULL, HFILL }},
{ &hf_budb_tapeEntry_expires,
- { "expires", "budb.tapeEntry.expires", FT_ABSOLUTE_TIME, BASE_NONE,
+ { "expires", "budb.tapeEntry.expires", FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL,
NULL, 0,
NULL, HFILL }},
@@ -4051,12 +4051,12 @@ proto_register_budb(void)
NULL, HFILL }},
{ &hf_budb_volumeEntry_clone,
- { "clone", "budb.volumeEntry.clone", FT_ABSOLUTE_TIME, BASE_NONE,
+ { "clone", "budb.volumeEntry.clone", FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL,
NULL, 0,
NULL, HFILL }},
{ &hf_budb_volumeEntry_incTime,
- { "incTime", "budb.volumeEntry.incTime", FT_ABSOLUTE_TIME, BASE_NONE,
+ { "incTime", "budb.volumeEntry.incTime", FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL,
NULL, 0,
NULL, HFILL }},
@@ -4231,12 +4231,12 @@ proto_register_budb(void)
NULL, HFILL }},
{ &hf_budb_dbVolume_clone,
- { "clone", "budb.dbVolume.clone", FT_ABSOLUTE_TIME, BASE_NONE,
+ { "clone", "budb.dbVolume.clone", FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL,
NULL, 0,
NULL, HFILL }},
{ &hf_budb_dbVolume_incTime,
- { "incTime", "budb.dbVolume.incTime", FT_ABSOLUTE_TIME, BASE_NONE,
+ { "incTime", "budb.dbVolume.incTime", FT_ABSOLUTE_TIME, ABSOLUTE_TIME_LOCAL,
NULL, 0,
NULL, HFILL }},