-
Bug
-
Resolution: Fixed
-
P3
-
1.0
-
1.0beta2
-
sparc
-
solaris_2.4
-
Not verified
[pgt, 11/30/95]
In java/src/solaris/java/runtime/socket.c, in the java_net_PlainSocketImpl_socketBind
function, the following line is wrong:
him.sin_addr.s_addr = (unsigned long) ntohl(addrptr->address);
It is wrong to use the ntohl macro. addrptr->address is already
in network-byte-order, which is the right form for the bind(3N) call.
In java/src/solaris/java/runtime/socket.c, in the java_net_PlainSocketImpl_socketBind
function, the following line is wrong:
him.sin_addr.s_addr = (unsigned long) ntohl(addrptr->address);
It is wrong to use the ntohl macro. addrptr->address is already
in network-byte-order, which is the right form for the bind(3N) call.