From: Nickolai Zeldovich Date: Wed, 17 Oct 2001 21:46:18 +0000 (+0000) Subject: bozo-getcellhost-takes-uint32-not-int32-20011017 X-Git-Tag: openafs-devel-1_3_0~197 X-Git-Url: https://git.openafs.org/?p=openafs.git;a=commitdiff_plain;h=d785c93b29595704a5544120f5cdb62c42b43064 bozo-getcellhost-takes-uint32-not-int32-20011017 pass in a uint32 rather than an int32 --- diff --git a/src/bozo/bosint.xg b/src/bozo/bosint.xg index 98c5fc1..fef2f4d 100644 --- a/src/bozo/bosint.xg +++ b/src/bozo/bosint.xg @@ -135,7 +135,7 @@ GetCellName( ) = 94; GetCellHost( - IN afs_int32 awhich, + IN afs_uint32 awhich, OUT string name ) = 95; diff --git a/src/bozo/bosoprocs.c b/src/bozo/bosoprocs.c index 8e5f867..76adc8f 100644 --- a/src/bozo/bosoprocs.c +++ b/src/bozo/bosoprocs.c @@ -411,7 +411,7 @@ char **aname; { BOZO_GetCellHost(acall, awhich, aname) struct rx_call *acall; -afs_int32 awhich; +afs_uint32 awhich; char **aname; { register afs_int32 code; struct afsconf_cell tcell;