diff options
| author | Theodore Tso <tytso@mit.edu> | 1996-07-25 06:16:18 +0000 |
|---|---|---|
| committer | Theodore Tso <tytso@mit.edu> | 1996-07-25 06:16:18 +0000 |
| commit | c4641b0636aa2f7dd109ef6ce85210692058fa49 (patch) | |
| tree | 2430dbc126f020c5bf9bc7d7314f6c035fb01ad9 /src/lib/gssapi/generic/util_token.c | |
| parent | bbf8f5cba683498e1128bec71ee47b729da77157 (diff) | |
| download | krb5-c4641b0636aa2f7dd109ef6ce85210692058fa49.tar.gz krb5-c4641b0636aa2f7dd109ef6ce85210692058fa49.tar.xz krb5-c4641b0636aa2f7dd109ef6ce85210692058fa49.zip | |
util_ordering.c (g_order_check):
util_ordering.c (g_order_init): Changed return code to be an int 32,
since we return a com_err error code. Change the type of the sequence
number to be an uint32.
gssapi.h: Define gss_int32 -- needed for error code returns.
Makefile.in (EHDRDIR): Use $(S) instead of /, so that EHDRDIR is valid
under windows. Fix how the header file is copied in under Windows.
gssapiP_generic.h: Include gssapi_generic.h instead of gssapi.h, so
that we get the definitions of the nametype oids.
oid_ops.c (generic_gss_release_oid): Re-enable function.
util_token.c (g_verify_token_header): Changed return code to be an int
32, since we return a com_err error code.
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@8814 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/lib/gssapi/generic/util_token.c')
| -rw-r--r-- | src/lib/gssapi/generic/util_token.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib/gssapi/generic/util_token.c b/src/lib/gssapi/generic/util_token.c index fe02c0e507..29d16e89a8 100644 --- a/src/lib/gssapi/generic/util_token.c +++ b/src/lib/gssapi/generic/util_token.c @@ -159,7 +159,7 @@ void g_make_token_header(mech, body_size, buf, tok_type) * mechanism in the token does not match the mech argument. buf and * *body_size are left unmodified on error. */ -gss_uint32 g_verify_token_header(mech, body_size, buf_in, tok_type, toksize) +gss_int32 g_verify_token_header(mech, body_size, buf_in, tok_type, toksize) gss_OID mech; int *body_size; unsigned char **buf_in; |
