aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/tcpdump
diff options
context:
space:
mode:
authorMatthew Dillon <dillon@FreeBSD.org>2002-01-19 23:20:02 +0000
committerMatthew Dillon <dillon@FreeBSD.org>2002-01-19 23:20:02 +0000
commit170ac683f26f1d05a019b0623b51b4b8f4576ada (patch)
tree262f00c422f3272c4031c870d746ed14c2f757d5 /usr.sbin/tcpdump
parent819a1420800a21ed5a99c96dd27e806dd971e041 (diff)
downloadsrc-170ac683f26f1d05a019b0623b51b4b8f4576ada.tar.gz
src-170ac683f26f1d05a019b0623b51b4b8f4576ada.zip
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.
Notes
Notes: svn path=/head/; revision=89572
Diffstat (limited to 'usr.sbin/tcpdump')
-rw-r--r--usr.sbin/tcpdump/tcpslice/tcpslice.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.sbin/tcpdump/tcpslice/tcpslice.c b/usr.sbin/tcpdump/tcpslice/tcpslice.c
index 46fa54965472..adca2f547a88 100644
--- a/usr.sbin/tcpdump/tcpslice/tcpslice.c
+++ b/usr.sbin/tcpdump/tcpslice/tcpslice.c
@@ -195,7 +195,7 @@ long local_time_zone(long timestamp)
struct timeval now;
struct timezone tz;
long localzone;
- time_t t = long_to_time(timestamp);
+ time_t t = _long_to_time(timestamp);
if (gettimeofday(&now, &tz) < 0)
err(1, "gettimeofday");
@@ -215,7 +215,7 @@ long local_time_zone(long timestamp)
struct timeval
parse_time(char *time_string, struct timeval base_time)
{
- time_t tt = long_to_time(base_time.tv_sec);
+ time_t tt = _long_to_time(base_time.tv_sec);
struct tm *bt = localtime(&tt);
struct tm t;
struct timeval result;
@@ -574,14 +574,14 @@ timestamp_to_string(struct timeval *timestamp)
break;
case TIMESTAMP_READABLE:
- tt = long_to_time(timestamp->tv_sec);
+ tt = _long_to_time(timestamp->tv_sec);
t = localtime(&tt);
strcpy( buf, asctime( t ) );
buf[24] = '\0'; /* nuke final newline */
break;
case TIMESTAMP_PARSEABLE:
- tt = long_to_time(timestamp->tv_sec);
+ tt = _long_to_time(timestamp->tv_sec);
t = localtime(&tt);
if (t->tm_year >= 100)
t->tm_year += 1900;