mirror of
https://github.com/simh/simh.git
synced 2026-01-26 04:01:38 +00:00
ETHER: Correct reversed supported version check for Npcap
This commit is contained in:
@@ -2704,7 +2704,7 @@ if (!version[0]) {
|
||||
while (*c && !isdigit (*c))
|
||||
++c;
|
||||
get_glyph (c, maj_min, ',');
|
||||
if (strcmp ("0.9990", maj_min) < 0)
|
||||
if (strcmp ("0.9990", maj_min) > 0)
|
||||
snprintf(version, sizeof(version), "Unsupported - %s", pcap_lib_version());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user