aboutsummaryrefslogtreecommitdiffstats
path: root/tethereal.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-10-31 08:15:26 +0000
committerGuy Harris <guy@alum.mit.edu>2000-10-31 08:15:26 +0000
commit7d67803a8eedb942a9612c5dd44abd2127c0442a (patch)
tree11ec28ad125019bb487fbae0d8f249a43ef040d4 /tethereal.c
parent73dde275c12a441df9d210a8da29fed88754c5f2 (diff)
Get rid of a statement that should've been deleted when we started using
"compute_timestamp_diff()" to compute the difference betwen time stamps but that wasn't deleted, causing the time difference between a frame and the previous frame to be computed incorrectly in Tethereal. svn path=/trunk/; revision=2543
Diffstat (limited to 'tethereal.c')
-rw-r--r--tethereal.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tethereal.c b/tethereal.c
index df287777c6..ebc47c3ba7 100644
--- a/tethereal.c
+++ b/tethereal.c
@@ -1,6 +1,6 @@
/* tethereal.c
*
- * $Id: tethereal.c,v 1.51 2000/10/16 23:18:03 guy Exp $
+ * $Id: tethereal.c,v 1.52 2000/10/31 08:15:26 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -862,7 +862,6 @@ fill_in_fdata(frame_data *fdata, capture_file *cf,
this packet. */
compute_timestamp_diff(&fdata->del_secs, &fdata->del_usecs,
fdata->abs_secs, fdata->abs_usecs, prevsec, prevusec);
- fdata->del_secs = fdata->abs_secs - prevsec;
prevsec = fdata->abs_secs;
prevusec = fdata->abs_usecs;