From: Derrick Brashear Date: Mon, 23 Apr 2001 07:31:15 +0000 (+0000) Subject: STABLE10-ubik-clone-support-20010423 X-Git-Tag: openafs-stable-1_0_4~69 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=34f59c514d069e13de0c2d0fdad4e88401034628;p=packages%2Fo%2Fopenafs.git STABLE10-ubik-clone-support-20010423 correct bad initialization in clone handling case --- diff --git a/src/ubik/beacon.c b/src/ubik/beacon.c index 59fb4c8d6..bb11cbdf9 100644 --- a/src/ubik/beacon.c +++ b/src/ubik/beacon.c @@ -211,12 +211,16 @@ ubeacon_InitServerListCommon(ame, info, clones, aservers) } ++nServers; } - ts->vote_rxcid = rx_NewConnection(servAddr, ubik_callPortal, - VOTE_SERVICE_ID, - ubikSecClass, ubikSecIndex); /* for vote reqs */ - ts->disk_rxcid = rx_NewConnection(servAddr, ubik_callPortal, - DISK_SERVICE_ID, ubikSecClass, - ubikSecIndex); /* for disk reqs */ + /* for vote reqs */ + ts->vote_rxcid = rx_NewConnection(info->hostAddr[i].sin_addr.s_addr, + ubik_callPortal, + VOTE_SERVICE_ID, + ubikSecClass, ubikSecIndex); + /* for disk reqs */ + ts->disk_rxcid = rx_NewConnection(info->hostAddr[i].sin_addr.s_addr, + ubik_callPortal, + DISK_SERVICE_ID, ubikSecClass, + ubikSecIndex); ts->up = 1; } } else {