Commit 3d122aec authored by Eric Durbin's avatar Eric Durbin Committed by Alexandre Julliard

iphlpapi: Fix a typo resulting in wrong variable assignment.

parent 020b0ef6
......@@ -651,7 +651,7 @@ DWORD getTCPStats(MIB_TCPSTATS *stats)
ptr = endPtr;
}
if (ptr && *ptr) {
stats->dwRtoMin = strtoul(ptr, &endPtr, 10);
stats->dwRtoMax = strtoul(ptr, &endPtr, 10);
ptr = endPtr;
}
if (ptr && *ptr) {
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment