natInetAddressPosix.cc (lookup): Reflect rename of localhostAddress to loopbackAddress.
authorAndreas Tobler <a.tobler@schweiz.ch>
Sat, 14 Aug 2004 05:04:52 +0000 (07:04 +0200)
committerAndreas Tobler <andreast@gcc.gnu.org>
Sat, 14 Aug 2004 05:04:52 +0000 (07:04 +0200)
2004-08-14  Andreas Tobler  <a.tobler@schweiz.ch>

        * java/net/natInetAddressPosix.cc (lookup): Reflect rename of
        localhostAddress to loopbackAddress.
        * java/net/natInetAddressWin32.cc (lookup): Likewise.

From-SVN: r85982

libjava/ChangeLog
libjava/java/net/natInetAddressPosix.cc
libjava/java/net/natInetAddressWin32.cc

index 6a73f1bf3654a8d287f3b45e6842b39f087bb2fb..1a935bb8ff73bb71f638939cdc0aeb64290ec44b 100644 (file)
@@ -1,3 +1,9 @@
+2004-08-14  Andreas Tobler  <a.tobler@schweiz.ch>
+
+       * java/net/natInetAddressPosix.cc (lookup): Reflect rename of 
+       localhostAddress to loopbackAddress.
+       * java/net/natInetAddressWin32.cc (lookup): Likewise.
+
 2004-08-13  Bryce McKinlay  <mckinlay@redhat.com>
 
        * configure.in (GCINCS): Don't use "boehm-cflags". Instead, -I 
index 9edfae290102354837c3941a3523d92b9ab16cc3..d343f23323cc0c7d2f471d257df12c065e8186cb 100644 (file)
@@ -167,7 +167,7 @@ java::net::InetAddress::lookup (jstring host, java::net::InetAddress* iaddr,
 #else
       // FIXME: this is insufficient if some other piece of code calls
       // this gethostbyname.
-      JvSynchronize sync (java::net::InetAddress::localhostAddress);
+      JvSynchronize sync (java::net::InetAddress::loopbackAddress);
       hptr = gethostbyname (hostname);
 #endif /* HAVE_GETHOSTBYNAME_R */
     }
@@ -221,7 +221,7 @@ java::net::InetAddress::lookup (jstring host, java::net::InetAddress* iaddr,
 #else /* HAVE_GETHOSTBYADDR_R */
       // FIXME: this is insufficient if some other piece of code calls
       // this gethostbyaddr.
-      JvSynchronize sync (java::net::InetAddress::localhostAddress);
+      JvSynchronize sync (java::net::InetAddress::loopbackAddress);
       hptr = gethostbyaddr (val, len, type);
 #endif /* HAVE_GETHOSTBYADDR_R */
     }
index 42c7d7db9e81c4b8ec086f4cd19bf191a2eede56..82c1e6f70025a1d8a9e501bc0e3b04057bdd8f6a 100644 (file)
@@ -60,7 +60,7 @@ java::net::InetAddress::lookup (jstring host, java::net::InetAddress* iaddr,
 
       // FIXME: this is insufficient if some other piece of code calls
       // this gethostbyname.
-      JvSynchronize sync (java::net::InetAddress::localhostAddress);
+      JvSynchronize sync (java::net::InetAddress::loopbackAddress);
       hptr = gethostbyname (hostname);
     }
   else
@@ -87,7 +87,7 @@ java::net::InetAddress::lookup (jstring host, java::net::InetAddress* iaddr,
 
       // FIXME: this is insufficient if some other piece of code calls
       // this gethostbyaddr.
-      JvSynchronize sync (java::net::InetAddress::localhostAddress);
+      JvSynchronize sync (java::net::InetAddress::loopbackAddress);
       hptr = gethostbyaddr (val, len, type);
     }
   if (hptr != NULL)