Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 1 Aug 2024 15:38:18 GMT
From:      Ed Maste <emaste@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 0673e7e370cb - stable/14 - tzsetup: Correct UTC description
Message-ID:  <202408011538.471FcIfF026837@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/14 has been updated by emaste:

URL: https://cgit.FreeBSD.org/src/commit/?id=0673e7e370cb95baca8c7132b72f29cf1840c165

commit 0673e7e370cb95baca8c7132b72f29cf1840c165
Author:     Ed Maste <emaste@FreeBSD.org>
AuthorDate: 2024-06-13 00:08:04 +0000
Commit:     Ed Maste <emaste@FreeBSD.org>
CommitDate: 2024-08-01 15:11:44 +0000

    tzsetup: Correct UTC description
    
    UTC is Coordinated Universal Time, not Greenwich Mean Time.
    
    Reviewed by:    imp, allanjude
    MFC after:      1 week
    Sponsored by:   The FreeBSD Foundation
    Differential Revision: https://reviews.freebsd.org/D45573
    
    (cherry picked from commit a16cb8709de7ddc6dd6ab71918af9fc5fd96f377)
---
 usr.sbin/tzsetup/tzsetup.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/usr.sbin/tzsetup/tzsetup.c b/usr.sbin/tzsetup/tzsetup.c
index eca7358df1df..6cd2e16b607c 100644
--- a/usr.sbin/tzsetup/tzsetup.c
+++ b/usr.sbin/tzsetup/tzsetup.c
@@ -1024,7 +1024,7 @@ main(int argc, char **argv)
 		    "If it is set to local time,\n"
 		    "or you don't know, please choose NO here!");
 
-		conf.title = "Select local or UTC (Greenwich Mean Time) clock";
+		conf.title = "Select local or UTC (Coordinated Universal Time) clock";
 		if (bsddialog_yesno(&conf, prompt, 7, 73) == BSDDIALOG_YES) {
 			if (reallydoit)
 				unlink(path_wall_cmos_clock);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202408011538.471FcIfF026837>