diff options
| author | David Greenman <dg@FreeBSD.org> | 1995-08-28 11:21:23 +0000 |
|---|---|---|
| committer | David Greenman <dg@FreeBSD.org> | 1995-08-28 11:21:23 +0000 |
| commit | 7ed9fbe9139b273d125690c7133ec7c39b92e30b (patch) | |
| tree | 346eb8c77f56b7d04389bea9dd714a3e157e9480 /usr.bin/script | |
| parent | 9712b3a6f2fb270f94a141d4d842e1042cbf6989 (diff) | |
Notes
Diffstat (limited to 'usr.bin/script')
| -rw-r--r-- | usr.bin/script/script.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.bin/script/script.c b/usr.bin/script/script.c index e688d640c861..25c5ad6f1e04 100644 --- a/usr.bin/script/script.c +++ b/usr.bin/script/script.c @@ -55,7 +55,6 @@ static char sccsid[] = "@(#)script.c 8.1 (Berkeley) 6/6/93"; #include <stdlib.h> #include <string.h> #include <termios.h> -#include <tzfile.h> #include <unistd.h> FILE *fscript; @@ -171,7 +170,7 @@ dooutput() (void)fprintf(fscript, "Script started on %s", ctime(&tvec)); (void)signal(SIGALRM, scriptflush); - value.it_interval.tv_sec = SECSPERMIN / 2; + value.it_interval.tv_sec = 60 / 2; value.it_interval.tv_usec = 0; value.it_value = value.it_interval; (void)setitimer(ITIMER_REAL, &value, NULL); |
