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
This commit is contained in:
Guy Harris 2000-10-31 08:15:26 +00:00
parent 73dde275c1
commit 7d67803a8e
1 changed files with 1 additions and 2 deletions

View File

@ -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;