Skip to content
Snippets Groups Projects
Commit 3d122aec authored by EA Durbin's avatar EA Durbin Committed by Alexandre Julliard
Browse files

iphlpapi: Fix a typo resulting in wrong variable assignment.

parent 020b0ef6
No related branches found
No related tags found
No related merge requests found
......@@ -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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment