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/gssapi.h | |
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/gssapi.h')
-rw-r--r-- | src/lib/gssapi/generic/gssapi.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/lib/gssapi/generic/gssapi.h b/src/lib/gssapi/generic/gssapi.h index 28cc4ca417..c83e7e6a76 100644 --- a/src/lib/gssapi/generic/gssapi.h +++ b/src/lib/gssapi/generic/gssapi.h @@ -170,10 +170,13 @@ typedef void FAR * gss_ctx_id_t; */ #if (GSS_SIZEOF_SHORT == 4) typedef unsigned short gss_uint32; +typedef short gss_int32; #elif (GSS_SIZEOF_INT == 4) typedef unsigned int gss_uint32; +typedef int gss_int32; #elif (GSS_SIZEOF_LONG == 4) typedef unsigned long gss_uint32; +typedef long gss_int32; #endif #ifdef OM_STRING |