From c3dbbbabdf7c1b6b8d7fe43ade44b555671e1c67 Mon Sep 17 00:00:00 2001 From: dillon Date: Sat, 19 Jan 2002 23:20:02 +0000 Subject: I've been meaning to do this for a while. Add an underscore to the time_to_xxx() and xxx_to_time() functions. e.g. _time_to_xxx() instead of time_to_xxx(), to make it more obvious that these are stopgap functions & placemarkers and not meant to create a defacto standard. They will eventually be replaced when a real standard comes out of committee. --- usr.sbin/ac/ac.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'usr.sbin/ac/ac.c') diff --git a/usr.sbin/ac/ac.c b/usr.sbin/ac/ac.c index 1543568..e4dab9d 100644 --- a/usr.sbin/ac/ac.c +++ b/usr.sbin/ac/ac.c @@ -473,7 +473,7 @@ ac(fp) if (!FirstTime) FirstTime = usr.ut_time; if (Flags & AC_D) { - time_t t = int_to_time(usr.ut_time); + time_t t = _int_to_time(usr.ut_time); ltm = localtime(&t); if (day >= 0 && day != ltm->tm_yday) { day = ltm->tm_yday; @@ -525,7 +525,7 @@ ac(fp) (void)strcpy(usr.ut_line, "~"); if (Flags & AC_D) { - time_t t = int_to_time(usr.ut_time); + time_t t = _int_to_time(usr.ut_time); ltm = localtime(&t); if (day >= 0 && day != ltm->tm_yday) { /* -- cgit v1.1