diff options
author | Stefan Metzmacher <metze@samba.org> | 2005-01-31 16:02:58 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:09:26 -0500 |
commit | f0d97d27aefa746f7c925296a2e4fa4d57b3219d (patch) | |
tree | 275691350e2417de5532573954e5536876026155 /source4/libcli/auth/gensec.h | |
parent | 2cb711f39f80adbe7375c809c57106ac8e71d5d8 (diff) | |
download | samba-f0d97d27aefa746f7c925296a2e4fa4d57b3219d.tar.gz samba-f0d97d27aefa746f7c925296a2e4fa4d57b3219d.tar.bz2 samba-f0d97d27aefa746f7c925296a2e4fa4d57b3219d.zip |
r5136: fix types
metze
(This used to be commit 344367cc4cdb232c394ce45ab64cc357cce4259f)
Diffstat (limited to 'source4/libcli/auth/gensec.h')
-rw-r--r-- | source4/libcli/auth/gensec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source4/libcli/auth/gensec.h b/source4/libcli/auth/gensec.h index 434f3fdb4d..a555584840 100644 --- a/source4/libcli/auth/gensec.h +++ b/source4/libcli/auth/gensec.h @@ -58,7 +58,7 @@ struct auth_session_info; struct gensec_security_ops { const char *name; const char *sasl_name; - uint8 auth_type; /* 0 if not offered on DCE-RPC */ + uint8_t auth_type; /* 0 if not offered on DCE-RPC */ const char *oid; /* NULL if not offered by SPENGO */ NTSTATUS (*client_start)(struct gensec_security *gensec_security); NTSTATUS (*server_start)(struct gensec_security *gensec_security); @@ -93,7 +93,7 @@ struct gensec_security_ops { NTSTATUS (*session_info)(struct gensec_security *gensec_security, struct auth_session_info **session_info); BOOL (*have_feature)(struct gensec_security *gensec_security, - uint32 feature); + uint32_t feature); BOOL enabled; }; @@ -109,7 +109,7 @@ struct gensec_security { struct gensec_target target; enum gensec_role gensec_role; BOOL subcontext; - uint32 want_features; + uint32_t want_features; }; /* this structure is used by backends to determine the size of some critical types */ |