From 1c88b1f22182988d8ebe1b0a05eb4e0fec233203 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Wed, 27 Jan 2010 00:35:32 +0000 Subject: [PATCH] Fix a comment. svn path=/trunk/; revision=31693 --- wiretap/libpcap.c | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/wiretap/libpcap.c b/wiretap/libpcap.c index e961750a8d..cdca16f234 100644 --- a/wiretap/libpcap.c +++ b/wiretap/libpcap.c @@ -122,8 +122,9 @@ int libpcap_open(wtap *wth, int *err, gchar **err_info) break; case PCAP_NSEC_MAGIC: - /* Host that wrote it has our byte order, and was running - a program using either standard or ss990417 libpcap. */ + /* Host that wrote it has our byte order, and was writing + the file in a format similar to standard libpcap + except that the time stamps have nanosecond resolution. */ byte_swapped = FALSE; modified = FALSE; wth->tsprecision = WTAP_FILE_TSPREC_NSEC; @@ -131,8 +132,9 @@ int libpcap_open(wtap *wth, int *err, gchar **err_info) case PCAP_SWAPPED_NSEC_MAGIC: /* Host that wrote it out has a byte order opposite to - ours, and was running a program using either ss990915 - or ss991029 libpcap. */ + ours, and was writing the file in a format similar to + standard libpcap except that the time stamps have + nanosecond resolution. */ byte_swapped = TRUE; modified = FALSE; wth->tsprecision = WTAP_FILE_TSPREC_NSEC;