From: Nickolai Zeldovich Date: Wed, 26 Dec 2001 19:30:34 +0000 (+0000) Subject: STABLE12-bozo-getcellhost-takes-uint32-not-int32-20011226 X-Git-Tag: openafs-stable-1_2_3~95 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=1c6779a0fd47fdaa5d9f6382d626a02898fb8e9d;p=packages%2Fo%2Fopenafs.git STABLE12-bozo-getcellhost-takes-uint32-not-int32-20011226 pass in a uint32 rather than an int32 --- diff --git a/src/bozo/bosint.xg b/src/bozo/bosint.xg index 98c5fc1ff..fef2f4d86 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 8e5f867a5..76adc8f48 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;