aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2013-12-13 02:38:11 +0000
committerGuy Harris <guy@alum.mit.edu>2013-12-13 02:38:11 +0000
commitc34050d629d5be72e56bb1a451907eb5d1d0f194 (patch)
tree8e72274beb4ee266103facddb2fb085dbc84f47d
parent6544ea2078aa903b4fffc4e0864609fd224364e6 (diff)
The IxVeriWave heuristic now gets more false positives (after, I
suspect, the change to handle VWR files with no packets); shuffle it after all the types we've seen misidentified as VWR files. svn path=/trunk/; revision=54012
-rw-r--r--wiretap/file_access.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/wiretap/file_access.c b/wiretap/file_access.c
index 9a5993853b..fa9c8b0f0b 100644
--- a/wiretap/file_access.c
+++ b/wiretap/file_access.c
@@ -353,10 +353,14 @@ static wtap_open_routine_t open_routines_base[] = {
* I put VWR *after* ERF, because there were some cases where
* ERF files were misidentified as vwr files (Stephen
* Donnelly, August 2013; see bug 9054)
+ *
+ * I put VWR *after* Peek Classic and NetScaler, because
+ * there were some cases where Peek Classic and NetScaler
+ * files were misidentified as vwr files (Guy Harris,
+ * December 2013)
*/
netscreen_open,
erf_open,
- vwr_open,
ipfix_open,
k12text_open,
peekclassic_open,
@@ -372,6 +376,7 @@ static wtap_open_routine_t open_routines_base[] = {
hcidump_open,
commview_open,
nstrace_open,
+ vwr_open,
camins_open
};