diff options
author | Lennart Poettering <lennart@poettering.net> | 2010-07-04 16:48:24 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2010-07-04 16:48:24 +0200 |
commit | 14ad1d1437f51b8ebc8dc6e8d3707b41d48d0a3a (patch) | |
tree | 33d7b111a9fa5610e3ac6ac3a4aab43e9b9a935a /src/systemctl.c | |
parent | 82c121a4754a9d405b07c75796e329942af2ccc5 (diff) |
dbus: include NextElapse field in timer properties
Diffstat (limited to 'src/systemctl.c')
-rw-r--r-- | src/systemctl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/systemctl.c b/src/systemctl.c index 392ecf2c92..f97fa10390 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -1024,7 +1024,7 @@ static int print_property(const char *name, DBusMessageIter *iter) { /* Yes, heuristics! But we can change this check * should it turn out to not be sufficient */ - if (strstr(name, "Timestamp") || strstr(name, "Elapse")) { + if (strstr(name, "Timestamp")) { char timestamp[FORMAT_TIMESTAMP_MAX], *t; if ((t = format_timestamp(timestamp, sizeof(timestamp), u)) || arg_all) |