svn commit: r357735 - head/usr.sbin/tzsetup

Warner Losh imp at FreeBSD.org
Mon Feb 10 17:16:41 UTC 2020


Author: imp
Date: Mon Feb 10 17:16:41 2020
New Revision: 357735
URL: https://svnweb.freebsd.org/changeset/base/357735

Log:
  Remove sparc64 ifdef
  
  Now we default to setting the hardware clock to UTC
  everywhere. sparc64 was the old odd-man out before.
  
  Reivewed by: cy@, bcr@
  Differential Revision: https://reviews.freebsd.org/D23593

Modified:
  head/usr.sbin/tzsetup/tzsetup.c

Modified: head/usr.sbin/tzsetup/tzsetup.c
==============================================================================
--- head/usr.sbin/tzsetup/tzsetup.c	Mon Feb 10 17:16:26 2020	(r357734)
+++ head/usr.sbin/tzsetup/tzsetup.c	Mon Feb 10 17:16:41 2020	(r357735)
@@ -1020,9 +1020,7 @@ main(int argc, char **argv)
 		    "If it is set to local time,\n"
 		    "or you don't know, please choose NO here!");
 		dlg_save_vars(&save_vars);
-#if !defined(__sparc64__)
 		dialog_vars.defaultno = TRUE;
-#endif
 		yesno = dialog_yesno(title, prompt, 7, 73);
 		dlg_restore_vars(&save_vars);
 		if (!yesno) {


More information about the svn-src-head mailing list