From: Yu Watanabe Date: Thu, 25 Jan 2018 08:45:53 +0000 (+0900) Subject: bus-util: fix format of NextElapseUSecRealtime= and LastTriggerUSec= X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?a=commitdiff_plain;h=4d84b5748fcfc3c1b70d7fd469ae75769f393385;p=elogind.git bus-util: fix format of NextElapseUSecRealtime= and LastTriggerUSec= Before this, `systemctl show` for calendar type timer unit outputs something like below. ``` NextElapseUSecRealtime=48y 3w 3d 15h NextElapseUSecMonotonic=0 LastTriggerUSec=48y 3w 3d 3h 41min 44.093095s LastTriggerUSecMonotonic=0 ``` As both NextElapseUSecRealtime= and LastTriggerUSec= are not timespan but timestamp, this makes format these values by `format_timestamp()`. --- diff --git a/src/shared/bus-util.c b/src/shared/bus-util.c index 375dbfb48..ce0e2a31a 100644 --- a/src/shared/bus-util.c +++ b/src/shared/bus-util.c @@ -715,7 +715,7 @@ int bus_print_property(const char *name, sd_bus_message *property, bool value, b /* Yes, heuristics! But we can change this check * should it turn out to not be sufficient */ - if (endswith(name, "Timestamp")) { + if (endswith(name, "Timestamp") || STR_IN_SET(name, "NextElapseUSecRealtime", "LastTriggerUSec")) { char timestamp[FORMAT_TIMESTAMP_MAX], *t; t = format_timestamp(timestamp, sizeof(timestamp), u);