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. --- sbin/ip6fw/ip6fw.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sbin/ip6fw') diff --git a/sbin/ip6fw/ip6fw.c b/sbin/ip6fw/ip6fw.c index 148dcdb..28d5d7a 100644 --- a/sbin/ip6fw/ip6fw.c +++ b/sbin/ip6fw/ip6fw.c @@ -207,7 +207,7 @@ show_ip6fw(struct ip6_fw *chain) if (chain->timestamp) { char timestr[30]; - time_t t = long_to_time(chain->timestamp); + time_t t = _long_to_time(chain->timestamp); strcpy(timestr, ctime(&t)); *strchr(timestr, '\n') = '\0'; -- cgit v1.1