diff options
author | Stefan Metzmacher <metze@samba.org> | 2006-06-01 17:59:05 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:08:47 -0500 |
commit | ee1c2b79ed775aeaa67792478bd8b03415f2e582 (patch) | |
tree | ee7abae1b472f14b625ef25391ced9cf1e8ba7ab /source4/heimdal/lib/gssapi/accept_sec_context.c | |
parent | f6b3f9dd2998ecb4ce206df0fdcf01c7de805235 (diff) | |
download | samba-ee1c2b79ed775aeaa67792478bd8b03415f2e582.tar.gz samba-ee1c2b79ed775aeaa67792478bd8b03415f2e582.tar.bz2 samba-ee1c2b79ed775aeaa67792478bd8b03415f2e582.zip |
r15993: don't use u_int32_t, as the main heimdal code also don't use
it anymore
metze
(This used to be commit e1842c9b55ffd0792fea2cff37b812d319c76f1f)
Diffstat (limited to 'source4/heimdal/lib/gssapi/accept_sec_context.c')
-rw-r--r-- | source4/heimdal/lib/gssapi/accept_sec_context.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/heimdal/lib/gssapi/accept_sec_context.c b/source4/heimdal/lib/gssapi/accept_sec_context.c index 50d150e57c..2dcb943aed 100644 --- a/source4/heimdal/lib/gssapi/accept_sec_context.c +++ b/source4/heimdal/lib/gssapi/accept_sec_context.c @@ -198,7 +198,7 @@ gsskrb5_acceptor_ready( OM_uint32 ret; int32_t seq_number; int is_cfx = 0; - u_int32_t *flags = &(*context_handle)->flags; + OM_uint32 *flags = &(*context_handle)->flags; krb5_auth_getremoteseqnumber (gssapi_krb5_context, (*context_handle)->auth_context, |