iphlpapi: Fix a typo resulting in wrong variable assignment.

This commit is contained in:
Eric Durbin 2008-06-24 22:46:39 -05:00 committed by Alexandre Julliard
parent 020b0ef64f
commit 3d122aec41

View file

@ -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) {