summaryrefslogtreecommitdiff
path: root/src/timedate
diff options
context:
space:
mode:
authorKay Sievers <kay@vrfy.org>2012-11-22 18:50:55 +0100
committerKay Sievers <kay@vrfy.org>2012-11-22 18:50:55 +0100
commit279858059da3be496691f9c47f5d9fb13636a2a0 (patch)
tree76f81d0549cc964e6544e937b15dab3bc5f19cc3 /src/timedate
parent324dfd5c321d71cdf0d861de88d9d573e7c7da06 (diff)
timedatectl: replace ",' with ':'
Diffstat (limited to 'src/timedate')
-rw-r--r--src/timedate/timedatectl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/timedate/timedatectl.c b/src/timedate/timedatectl.c
index 8d8e12cb6b..1a6cc61170 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);