STABLE14-ubik-multihome-byte-order-problem-20040818

"Playing around with multi-address database servers on little-endian machines
I found out that there is one conversion of the ip-address too much"


(cherry picked from commit 6f1cd5a43e)
This commit is contained in:
Hartmut Reuter 2004-08-25 08:11:03 +00:00 committed by Derrick Brashear
parent 3fa1980e52
commit 874f449df4

View File

@ -570,7 +570,7 @@ verifyInterfaceAddress(ame, info, aservers)
for (i = 0; i < totalServers; i++) {
if (info)
tmpAddr =
ntohl((afs_uint32) info->hostAddr[i].sin_addr.s_addr);
(afs_uint32) info->hostAddr[i].sin_addr.s_addr;
else
tmpAddr = aservers[i];
if (myAddr[j] == tmpAddr) {