From: Lennart Poettering Date: Tue, 12 Oct 2010 02:05:29 +0000 (+0200) Subject: systemctl: drop [] around date in status output X-Git-Tag: v12~251 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=538da63d539ddbddf73c5163a51a8da579aa7708 systemctl: drop [] around date in status output --- diff --git a/src/systemctl.c b/src/systemctl.c index 51f5bba84..a4a76558b 100644 --- a/src/systemctl.c +++ b/src/systemctl.c @@ -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");