Commit 9e65a913 by Kaveh R. Ghazi Committed by Kaveh Ghazi

natInetAddress.cc (java::net::InetAddress::aton): Wrap use of inet_pton in HAVE_INET6.

	* java/net/natInetAddress.cc (java::net::InetAddress::aton):
	Wrap use of inet_pton in HAVE_INET6.

From-SVN: r41547
parent ddbb6d43
2001-04-25 Kaveh R. Ghazi <ghazi@caip.rutgers.edu>
* java/net/natInetAddress.cc (java::net::InetAddress::aton):
Wrap use of inet_pton in HAVE_INET6.
2001-04-25 Bryce McKinlay <bryce@albatross.co.nz>
java.security merge and ClassLoader compliance fixes.
......
......@@ -118,7 +118,7 @@ java::net::InetAddress::aton (jstring host)
blen = 4;
}
#endif
#ifdef HAVE_INET_PTON
#if defined (HAVE_INET_PTON) && defined (HAVE_INET6)
char inet6_addr[16];
if (len == 0 && inet_pton (AF_INET6, hostname, inet6_addr) > 0)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment