summaryrefslogtreecommitdiff
path: root/source3/include/client.h
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2009-12-22 18:50:55 +1100
committerStefan Metzmacher <metze@samba.org>2009-12-22 21:07:53 +0100
commit5b37cd23bf66ed62e861083d02e9a914f0ffd4c3 (patch)
tree8b42e36dcdaecfd1d24a9052d454fac49e5fcfb4 /source3/include/client.h
parentdee35f793c8f1372b4197f798997dfb1c76a93de (diff)
downloadsamba-5b37cd23bf66ed62e861083d02e9a914f0ffd4c3.tar.gz
samba-5b37cd23bf66ed62e861083d02e9a914f0ffd4c3.tar.bz2
samba-5b37cd23bf66ed62e861083d02e9a914f0ffd4c3.zip
s3:ntlmssp: remove the typedef NTLMSSP_STATE
Andrew Bartlett
Diffstat (limited to 'source3/include/client.h')
-rw-r--r--source3/include/client.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/client.h b/source3/include/client.h
index 82d94b055f..d5030c1cb2 100644
--- a/source3/include/client.h
+++ b/source3/include/client.h
@@ -56,7 +56,7 @@ struct cli_pipe_auth_data {
union {
struct schannel_state *schannel_auth;
- NTLMSSP_STATE *ntlmssp_state;
+ struct ntlmssp_state *ntlmssp_state;
struct kerberos_auth_struct *kerberos_auth;
} a_u;
};
@@ -172,7 +172,7 @@ struct smb_trans_enc_state {
uint16 enc_ctx_num;
bool enc_on;
union {
- NTLMSSP_STATE *ntlmssp_state;
+ struct ntlmssp_state *ntlmssp_state;
#if defined(HAVE_GSSAPI) && defined(HAVE_KRB5)
struct smb_tran_enc_state_gss *gss_state;
#endif