Eric Durbin : iphlpapi: Fix a typo resulting in wrong variable assignment.
Module: wine Branch: master Commit: 3d122aec41215e2575ef7dabb8a3ed54e7983957 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3d122aec41215e2575ef7dabb8... Author: Eric Durbin <eadurbin(a)freebsd.org> Date: Tue Jun 24 22:46:39 2008 -0500 iphlpapi: Fix a typo resulting in wrong variable assignment. --- dlls/iphlpapi/ipstats.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/iphlpapi/ipstats.c b/dlls/iphlpapi/ipstats.c index 8d35c5f..4128875 100644 --- a/dlls/iphlpapi/ipstats.c +++ b/dlls/iphlpapi/ipstats.c @@ -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) {
participants (1)
-
Alexandre Julliard