aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ipmi.c
diff options
context:
space:
mode:
Diffstat (limited to 'epan/dissectors/packet-ipmi.c')
-rw-r--r--epan/dissectors/packet-ipmi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ipmi.c b/epan/dissectors/packet-ipmi.c
index af48dbf4fc..6ddb109e6e 100644
--- a/epan/dissectors/packet-ipmi.c
+++ b/epan/dissectors/packet-ipmi.c
@@ -789,7 +789,7 @@ ipmi_add_timestamp(proto_tree *tree, gint hf, tvbuff_t *tvb, guint offset)
d, h, m, s);
} else {
time_t t = ts;
- strftime(buf, sizeof(buf), "%F %T", gmtime(&t));
+ strftime(buf, sizeof(buf), "%Y-%m-%d %H:%M:%S", gmtime(&t));
proto_tree_add_uint_format_value(tree, hf, tvb, offset, 4,
ts, "%s", buf);
}