aboutsummaryrefslogtreecommitdiffstats
path: root/gtk/capture_if_details_dlg.c
diff options
context:
space:
mode:
authorUlf Lamping <ulf.lamping@web.de>2005-08-10 19:34:09 +0000
committerUlf Lamping <ulf.lamping@web.de>2005-08-10 19:34:09 +0000
commitc38d1603210babc9293ee7b90f240b0bd6093fe9 (patch)
tree538c0743a04dc789b3f75b356a426ab638c0d5c3 /gtk/capture_if_details_dlg.c
parent4e4aa78bcc08f290ab398ff70bb47086354e6c5d (diff)
don't warn the user about the WinPcap 3.1 release version as being unknown
svn path=/trunk/; revision=15283
Diffstat (limited to 'gtk/capture_if_details_dlg.c')
-rw-r--r--gtk/capture_if_details_dlg.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/gtk/capture_if_details_dlg.c b/gtk/capture_if_details_dlg.c
index 1526b78d97..aba49ccb7a 100644
--- a/gtk/capture_if_details_dlg.c
+++ b/gtk/capture_if_details_dlg.c
@@ -1264,7 +1264,8 @@ capture_if_details_open(char *iface)
/* XXX - add more known DLL versions here */
/* (all versions since the 2.3 release seems to be working (although the 2.3 beta did not) */
- if( strcmp(version, "3, 1, 0, 24") == 0 || /* 3.1 beta 4 */
+ if( strcmp(version, "3, 1, 0, 27") == 0 || /* 3.1 release */
+ strcmp(version, "3, 1, 0, 24") == 0 || /* 3.1 beta 4 */
strcmp(version, "3, 1, 0, 23") == 0 || /* 3.1 beta 3 */
strcmp(version, "3, 1, 0, 22") == 0 || /* 3.1 beta 2 */
strcmp(version, "3, 1, 0, 20") == 0 || /* 3.1 beta */