chiark / gitweb /
systemctl: drop [] around date in status output
authorLennart Poettering <lennart@poettering.net>
Tue, 12 Oct 2010 02:05:29 +0000 (04:05 +0200)
committerLennart Poettering <lennart@poettering.net>
Tue, 12 Oct 2010 02:08:04 +0000 (04:08 +0200)
src/systemctl.c

index 51f5bba84c4bc2f93ac7c5055fffdeddc57a0ccd..a4a76558bdca92e1f3fb6daf96ad5e71e233ce47 100644 (file)
@@ -1679,9 +1679,9 @@ static void print_status_info(UnitStatusInfo *i) {
         s2 = format_timestamp(since2, sizeof(since2), timestamp);
 
         if (s1)
         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)
         else if (s2)
-                printf(" since [%s]\n", s2);
+                printf(" since %s\n", s2);
         else
                 printf("\n");
 
         else
                 printf("\n");