summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>1999-09-30 20:34:26 +0000
committerGuy Harris <guy@alum.mit.edu>1999-09-30 20:34:26 +0000
commit57772323ad515e8399a33eccb41ca2156a5d44b3 (patch)
tree7e8668a344194999b35220798a02a660301f4689
parentf93fbc1c89e4ff4ac609d19d347e387c67e8f1ad (diff)
downloadwireshark-57772323ad515e8399a33eccb41ca2156a5d44b3.tar.gz
A "time units" value of 5 means "microseconds", according to an FDDI
Sniffer trace, and printout therefrom, sent to me by Jeff Foster. (The Sniffer manuals I'd had a chance to read didn't say what the units were.) svn path=/trunk/; revision=744
-rw-r--r--wiretap/ngsniffer.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/wiretap/ngsniffer.c b/wiretap/ngsniffer.c
index c52228c81d..4bd358cc91 100644
--- a/wiretap/ngsniffer.c
+++ b/wiretap/ngsniffer.c
@@ -1,6 +1,6 @@
/* ngsniffer.c
*
- * $Id: ngsniffer.c,v 1.23 1999/09/24 05:49:52 guy Exp $
+ * $Id: ngsniffer.c,v 1.24 1999/09/30 20:34:26 guy Exp $
*
* Wiretap Library
* Copyright (c) 1998 by Gilbert Ramirez <gram@verdict.uthscsa.edu>
@@ -237,7 +237,7 @@ struct frame4_rec {
/* values for V.timeunit */
#define NUM_NGSNIFF_TIMEUNITS 7
-static double Usec[] = { 15.0, 0.838096, 15.0, 0.5, 2.0, 0.0, 0.1 };
+static double Usec[] = { 15.0, 0.838096, 15.0, 0.5, 2.0, 1.0, 0.1 };
static int ngsniffer_read(wtap *wth, int *err);