mirror of
https://github.com/open-simh/simh.git
synced 2026-02-18 21:47:49 +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