Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/netbsd-1-6]: src/distrib/utils/sysinst Pull up revision 1.74 (requested ...



details:   https://anonhg.NetBSD.org/src/rev/6907251efff0
branches:  netbsd-1-6
changeset: 529162:6907251efff0
user:      lukem <lukem%NetBSD.org@localhost>
date:      Sun Oct 13 23:57:01 2002 +0000

description:
Pull up revision 1.74 (requested by grant in ticket #902):
during timezone selection, only update the clock once per minute. once
per second is painful and annoying over a serial line.

diffstat:

 distrib/utils/sysinst/util.c |  4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diffs (18 lines):

diff -r a1eeaffe0144 -r 6907251efff0 distrib/utils/sysinst/util.c
--- a/distrib/utils/sysinst/util.c      Sun Oct 13 23:55:41 2002 +0000
+++ b/distrib/utils/sysinst/util.c      Sun Oct 13 23:57:01 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: util.c,v 1.67.2.6 2002/08/10 00:50:39 itojun Exp $     */
+/*     $NetBSD: util.c,v 1.67.2.7 2002/10/13 23:57:01 lukem Exp $      */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -936,7 +936,7 @@
 timezone_sig(int sig)
 {
        set_timezone_select(NULL);
-       alarm(1);
+       alarm(60);
 }
 
 /*



Home | Main Index | Thread Index | Old Index