diff options
author | Lennart Poettering <lennart@poettering.net> | 2016-05-30 18:22:16 +0200 |
---|---|---|
committer | Lennart Poettering <lennart@poettering.net> | 2016-05-30 18:22:16 +0200 |
commit | 54f8c958f1ebff12b961a1029a2aec451587c206 (patch) | |
tree | 9cb94ebba67b55d62f15ec6879918097b098a45d /src/timedate | |
parent | sysv-generator: don't create Conflicts= deps towards shutdown.target anymore (diff) | |
download | systemd-54f8c958f1ebff12b961a1029a2aec451587c206.tar.gz systemd-54f8c958f1ebff12b961a1029a2aec451587c206.tar.bz2 systemd-54f8c958f1ebff12b961a1029a2aec451587c206.zip |
tree-wide: use ansi_highlight() instead of ANSI_HIGHLIGHT where appropriate
Let's make sure SYSTEMD_COLORS is honour by more tools
Diffstat (limited to 'src/timedate')
-rw-r--r-- | src/timedate/timedatectl.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/timedate/timedatectl.c b/src/timedate/timedatectl.c index a2270aff4..b7871f81a 100644 --- a/src/timedate/timedatectl.c +++ b/src/timedate/timedatectl.c @@ -144,13 +144,13 @@ static void print_status_info(const StatusInfo *i) { yes_no(i->rtc_local)); if (i->rtc_local) - fputs("\n" ANSI_HIGHLIGHT - "Warning: The system is configured to read the RTC time in the local time zone.\n" - " This mode can not be fully supported. It will create various problems\n" - " with time zone changes and daylight saving time adjustments. The RTC\n" - " time is never updated, it relies on external facilities to maintain it.\n" - " If at all possible, use RTC in UTC by calling\n" - " 'timedatectl set-local-rtc 0'." ANSI_NORMAL "\n", stdout); + printf("\n%s" + "Warning: The system is configured to read the RTC time in the local time zone.\n" + " This mode can not be fully supported. It will create various problems\n" + " with time zone changes and daylight saving time adjustments. The RTC\n" + " time is never updated, it relies on external facilities to maintain it.\n" + " If at all possible, use RTC in UTC by calling\n" + " 'timedatectl set-local-rtc 0'.%s\n", ansi_highlight(), ansi_normal()); } static int show_status(sd_bus *bus, char **args, unsigned n) { |