summaryrefslogtreecommitdiffstats
path: root/usr.bin/last/last.c
diff options
context:
space:
mode:
Diffstat (limited to 'usr.bin/last/last.c')
-rw-r--r--usr.bin/last/last.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/usr.bin/last/last.c b/usr.bin/last/last.c
index b3697a3..c9518a3 100644
--- a/usr.bin/last/last.c
+++ b/usr.bin/last/last.c
@@ -211,7 +211,7 @@ wtmp()
bl = (stb.st_size + sizeof(buf) - 1) / sizeof(buf);
(void)time(&t);
- buf[0].ut_time = time_to_int(t);
+ buf[0].ut_time = _time_to_int(t);
(void)signal(SIGINT, onintr);
(void)signal(SIGQUIT, onintr);
@@ -248,7 +248,7 @@ wtmp()
* unless flagged for
*/
if (!snaptime && want(bp)) {
- t = int_to_time(bp->ut_time);
+ t = _int_to_time(bp->ut_time);
tm = localtime(&t);
(void) strftime(ct, sizeof(ct),
d_first ? "%a %e %b %R" :
@@ -272,7 +272,7 @@ wtmp()
if ((bp->ut_line[0] == '{' || bp->ut_line[0] == '|')
&& !bp->ut_line[1]) {
if (want(bp) && !snaptime) {
- t = int_to_time(bp->ut_time);
+ t = _int_to_time(bp->ut_time);
tm = localtime(&t);
(void) strftime(ct, sizeof(ct),
d_first ? "%a %e %b %R" :
@@ -320,7 +320,7 @@ wtmp()
bp->ut_line[3] = '\0';
else if (!strncmp(bp->ut_line, "uucp", sizeof("uucp") - 1))
bp->ut_line[4] = '\0';
- t = int_to_time(bp->ut_time);
+ t = _int_to_time(bp->ut_time);
tm = localtime(&t);
(void) strftime(ct, sizeof(ct),
d_first ? "%a %e %b %R" :
@@ -366,7 +366,7 @@ wtmp()
tt->logout = bp->ut_time;
}
}
- t = int_to_time(buf[0].ut_time);
+ t = _int_to_time(buf[0].ut_time);
tm = localtime(&t);
(void) strftime(ct, sizeof(ct), "\nwtmp begins %+\n", tm);
printf("%s", ct);
@@ -566,7 +566,7 @@ onintr(signo)
{
char ct[80];
struct tm *tm;
- time_t t = int_to_time(buf[0].ut_time);
+ time_t t = _int_to_time(buf[0].ut_time);
tm = localtime(&t);
(void) strftime(ct, sizeof(ct),
OpenPOWER on IntegriCloud