1
1
mirror of https://github.com/systemd/systemd-stable.git synced 2025-02-04 17:47:03 +03:00

systemctl: drop [] around date in status output

This commit is contained in:
Lennart Poettering 2010-10-12 04:05:29 +02:00
parent 4a9e2fffdf
commit 538da63d53

View File

@ -1679,9 +1679,9 @@ static void print_status_info(UnitStatusInfo *i) {
s2 = format_timestamp(since2, sizeof(since2), timestamp); s2 = format_timestamp(since2, sizeof(since2), timestamp);
if (s1) if (s1)
printf(" since [%s; %s]\n", s2, s1); printf(" since %s; %s\n", s2, s1);
else if (s2) else if (s2)
printf(" since [%s]\n", s2); printf(" since %s\n", s2);
else else
printf("\n"); printf("\n");