diff options
| author | Bruce Evans <bde@FreeBSD.org> | 1998-06-29 17:06:00 +0000 |
|---|---|---|
| committer | Bruce Evans <bde@FreeBSD.org> | 1998-06-29 17:06:00 +0000 |
| commit | 375557fcad82c55a9d54ef6166bacaf584ad19aa (patch) | |
| tree | 439be8cc885c997c72cd630617c002e5f59868b6 /usr.bin/pr | |
| parent | 74b5e3ebd13c11429b0176de24ca2ad1e93926c3 (diff) | |
Notes
Diffstat (limited to 'usr.bin/pr')
| -rw-r--r-- | usr.bin/pr/pr.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/usr.bin/pr/pr.c b/usr.bin/pr/pr.c index ed729d891cb2a..c4fac42fa0f35 100644 --- a/usr.bin/pr/pr.c +++ b/usr.bin/pr/pr.c @@ -1255,6 +1255,7 @@ nxtfile(argc, argv, fname, buf, dt) { FILE *inf = NULL; struct timeval tv; + time_t tv_sec; struct timezone tz; struct tm *timeptr = NULL; struct stat statbuf; @@ -1282,7 +1283,8 @@ nxtfile(argc, argv, fname, buf, dt) eoptind = argc - 1; return(NULL); } - timeptr = localtime(&(tv.tv_sec)); + tv_sec = tv.tv_sec; + timeptr = localtime(&tv_sec); } for (; eoptind < argc; ++eoptind) { if (strcmp(argv[eoptind], "-") == 0) { @@ -1305,7 +1307,8 @@ nxtfile(argc, argv, fname, buf, dt) strerror(errno)); return(NULL); } - timeptr = localtime(&(tv.tv_sec)); + tv_sec = tv.tv_sec; + timeptr = localtime(&tv_sec); } else { /* * normal file processing @@ -1336,7 +1339,8 @@ nxtfile(argc, argv, fname, buf, dt) strerror(errno)); return(NULL); } - timeptr = localtime(&(tv.tv_sec)); + tv_sec = tv.tv_sec; + timeptr = localtime(&tv_sec); } else { if (fstat(fileno(inf), &statbuf) < 0) { ++errcnt; |
