From 4f8c8c215d642e719ee70e3554c11180fd3cfb84 Mon Sep 17 00:00:00 2001 From: Guy Harris Date: Fri, 25 Apr 2014 14:25:47 -0700 Subject: [PATCH] This doesn't have separate captured and actual length, either. Change-Id: I4605bde8a2951ea78d507bab6fcf004ebef6f38f Reviewed-on: https://code.wireshark.org/review/1362 Reviewed-by: Guy Harris --- wiretap/5views.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wiretap/5views.c b/wiretap/5views.c index 23c3f4c598..db377b1570 100644 --- a/wiretap/5views.c +++ b/wiretap/5views.c @@ -297,7 +297,7 @@ _5views_read_header(wtap *wth, FILE_T fh, t_5VW_TimeStamped_Header *hdr, hdr->Utc = pletoh32(&hdr->Utc); hdr->NanoSecondes = pletoh32(&hdr->NanoSecondes); - phdr->presence_flags = WTAP_HAS_TS|WTAP_HAS_CAP_LEN; + phdr->presence_flags = WTAP_HAS_TS; phdr->ts.secs = hdr->Utc; phdr->ts.nsecs = hdr->NanoSecondes; phdr->caplen = hdr->RecSize;