From 9754afb2112faa862654d197833a18a145bb14b0 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Sat, 24 Apr 2010 03:03:43 +0200 Subject: [PATCH] systemdadm: format dates in RFC822 style --- systemadm.vala | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/systemadm.vala b/systemadm.vala index 423528a..deb1be0 100644 --- a/systemadm.vala +++ b/systemadm.vala @@ -395,15 +395,15 @@ public class MainWindow : Window { uint64 t = unit.active_enter_timestamp; if (t > 0) { - TimeVal tv = { (long) (t / 1000000), (long) (t % 1000000) }; - unit_active_enter_timestamp_label.set_text_or_na(tv.to_iso8601()); + Time timestamp = Time.gm((time_t) (t / 1000000)); + unit_active_enter_timestamp_label.set_text_or_na(timestamp.format("%a, %d %b %Y %H:%M:%S %z")); } else unit_active_enter_timestamp_label.set_text_or_na(); t = unit.active_exit_timestamp; if (t > 0) { - TimeVal tv = { (long) (t / 1000000), (long) (t % 1000000) }; - unit_active_exit_timestamp_label.set_text_or_na(tv.to_iso8601()); + Time timestamp = Time.gm((time_t) (t / 1000000)); + unit_active_exit_timestamp_label.set_text_or_na(timestamp.format("%a, %d %b %Y %H:%M:%S %z")); } else unit_active_exit_timestamp_label.set_text_or_na(); -- 2.7.4