Make bitfields unsigned, add maybe_open.

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@19050 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Love Hörnquist Åstrand
2006-11-15 11:37:25 +00:00
parent a4908290ac
commit 07a8f134e8

View File

@@ -86,10 +86,11 @@ typedef struct {
OM_uint32 mech_time_rec;
gss_name_t mech_src_name;
gss_cred_id_t delegated_cred_id;
int open : 1;
int local : 1;
int require_mic : 1;
int verified_mic : 1;
unsigned int open : 1;
unsigned int local : 1;
unsigned int require_mic : 1;
unsigned int verified_mic : 1;
unsigned int maybe_open : 1;
HEIMDAL_MUTEX ctx_id_mutex;
} *gssspnego_ctx;