From: Kay Sievers Date: Thu, 22 Nov 2012 17:50:55 +0000 (+0100) Subject: timedatectl: replace ",' with ':' X-Git-Tag: v197~221 X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=279858059da3be496691f9c47f5d9fb13636a2a0 timedatectl: replace ",' with ':' --- diff --git a/src/timedate/timedatectl.c b/src/timedate/timedatectl.c index 8d8e12cb6..1a6cc6117 100644 --- a/src/timedate/timedatectl.c +++ b/src/timedate/timedatectl.c @@ -174,7 +174,7 @@ static void print_status_info(StatusInfo *i) { zero(tm); assert_se(strftime(b, sizeof(b), "%a, %Y-%m-%d %H:%M:%S %Z", localtime_r(&tc, &tm)) > 0); char_array_0(b); - printf(" Last DST change, DST became %s\n" + printf(" Last DST change: DST became %s\n" " %s\n" " %s\n", is_dstc ? "active" : "inactive", a, b); @@ -187,7 +187,7 @@ static void print_status_info(StatusInfo *i) { zero(tm); assert_se(strftime(b, sizeof(b), "%a, %Y-%m-%d %H:%M:%S %Z", localtime_r(&tn, &tm)) > 0); char_array_0(b); - printf(" Next DST change, DST will become %s, the clock will jump %s\n" + printf(" Next DST change: DST will become %s, the clock will jump %s\n" " %s\n" " %s\n", is_dstn ? "active" : "inactive", jump_str(dn, s, sizeof(s)), a, b);