1
0
mirror of https://github.com/systemd/systemd.git synced 2024-12-31 21:18:09 +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);
if (s1)
printf(" since [%s; %s]\n", s2, s1);
printf(" since %s; %s\n", s2, s1);
else if (s2)
printf(" since [%s]\n", s2);
printf(" since %s\n", s2);
else
printf("\n");