You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2006/04/05 19:01:58 UTC

svn commit: r391677 - /incubator/harmony/enhanced/classlib/trunk/native-src/win.IA32/port/hysock.c

Author: tellison
Date: Wed Apr  5 10:01:56 2006
New Revision: 391677

URL: http://svn.apache.org/viewcvs?rev=391677&view=rev
Log:
Fix for HARMONY-303 (isAnyAddress is a function not a variable in win.IA32/port/hysock.c)

Modified:
    incubator/harmony/enhanced/classlib/trunk/native-src/win.IA32/port/hysock.c

Modified: incubator/harmony/enhanced/classlib/trunk/native-src/win.IA32/port/hysock.c
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/native-src/win.IA32/port/hysock.c?rev=391677&r1=391676&r2=391677&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/native-src/win.IA32/port/hysock.c (original)
+++ incubator/harmony/enhanced/classlib/trunk/native-src/win.IA32/port/hysock.c Wed Apr  5 10:01:56 2006
@@ -638,7 +638,7 @@
     }
 
   /* If we are the any address, then we want to bind on the other IP stack as well, if that socket is still open */
-  if (isAnyAddress
+  if (anyAddress
       && ((isIPv4 && (sock->flags & SOCKET_IPV6_OPEN_MASK))
 	  || (!isIPv4 && (sock->flags & SOCKET_IPV4_OPEN_MASK))))
     {