diff options
| author | Ezra Peisach <epeisach@mit.edu> | 2001-07-27 01:53:05 +0000 |
|---|---|---|
| committer | Ezra Peisach <epeisach@mit.edu> | 2001-07-27 01:53:05 +0000 |
| commit | 9e6ae87a8a9ba1485715f6ec71560d2b8277158f (patch) | |
| tree | b3443a8faf2a76aa46cf2d34d2b5ecc4ffde4533 /src/lib/rpc/auth_gssapi_misc.c | |
| parent | d0e7dcdbb1e65e571c3345749d37aec46f6f3aa7 (diff) | |
| download | krb5-9e6ae87a8a9ba1485715f6ec71560d2b8277158f.tar.gz krb5-9e6ae87a8a9ba1485715f6ec71560d2b8277158f.tar.xz krb5-9e6ae87a8a9ba1485715f6ec71560d2b8277158f.zip | |
* xdr_reference.c (xdr_reference): Remove cast in argument to memset
* svc_auth_gssapi.c: In call to gss_accept_sec_context, pass
OM_uint32 * instead of int *;
* pmap_clnt.h, pmap_getport.c (pmap_getport): Prototype changed
for protocol from unsigned int to rpc_u_int32 to match struct
pmap.
* getrpcport.c (gssrpc_getrpcport): Update to reflect proper
calling conventions.
* rpc.h (callrpc): Change prototype from expecting ints for
prognum, versnum and procnum to rpc_u_int32 for consistancy.
(getrpcport): Update arguments in similar fashion.
* clnt_simple.c (gssrpc_callrpc): Update to reflect prototype change.
* auth_gssapi_misc.c (auth_gssapi_display_status_1): Local
variable msg_ctx should be OM_uint32 instead of int as argument to
gss_display_status.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@13645 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/rpc/auth_gssapi_misc.c')
| -rw-r--r-- | src/lib/rpc/auth_gssapi_misc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/rpc/auth_gssapi_misc.c b/src/lib/rpc/auth_gssapi_misc.c index 810bd7829..f1110132a 100644 --- a/src/lib/rpc/auth_gssapi_misc.c +++ b/src/lib/rpc/auth_gssapi_misc.c @@ -150,7 +150,7 @@ static void auth_gssapi_display_status_1(m, code, type, rec) { OM_uint32 gssstat, minor_stat; gss_buffer_desc msg; - int msg_ctx; + OM_uint32 msg_ctx; msg_ctx = 0; while (1) { |
