diff options
author | Guy Harris <guy@alum.mit.edu> | 2000-10-31 08:15:26 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2000-10-31 08:15:26 +0000 |
commit | 7d67803a8eedb942a9612c5dd44abd2127c0442a (patch) | |
tree | 11ec28ad125019bb487fbae0d8f249a43ef040d4 | |
parent | 73dde275c12a441df9d210a8da29fed88754c5f2 (diff) | |
download | wireshark-7d67803a8eedb942a9612c5dd44abd2127c0442a.tar.gz wireshark-7d67803a8eedb942a9612c5dd44abd2127c0442a.tar.bz2 wireshark-7d67803a8eedb942a9612c5dd44abd2127c0442a.zip |
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
-rw-r--r-- | tethereal.c | 3 |
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; |