From ef30aee86af468659aa3051a37edc15d9802e2b4 Mon Sep 17 00:00:00 2001 From: Jakub Zawadzki Date: Sat, 9 Nov 2013 11:03:02 +0000 Subject: [PATCH] nstime_to_sec() and capinfos secs_nsecs() seems to be same. svn path=/trunk/; revision=53185 --- capinfos.c | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/capinfos.c b/capinfos.c index 89ba0c6aeb..af69da1478 100644 --- a/capinfos.c +++ b/capinfos.c @@ -447,12 +447,6 @@ time_string(time_t timer, capture_info *cf_info, gboolean want_lf) return time_string_buf; } -static double -secs_nsecs(const nstime_t * nstime) /* nstime_to_sec */ -{ - return (nstime->nsecs / 1000000000.0) + (double)nstime->secs; -} - static void print_value(const gchar *text_p1, gint width, const gchar *text_p2, double value) { if (value > 0.0) printf("%s%.*f%s\n", text_p1, width, value, text_p2); @@ -856,7 +850,7 @@ process_cap_file(wtap *wth, const char *filename) phdr = wtap_phdr(wth); if (phdr->presence_flags & WTAP_HAS_TS) { prev_time = cur_time; - cur_time = secs_nsecs(&phdr->ts); + cur_time = nstime_to_sec(&phdr->ts); if(packet==0) { start_time = cur_time; stop_time = cur_time;