summaryrefslogtreecommitdiff
path: root/source3/include/ntlmssp.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/ntlmssp.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/ntlmssp.h')
-rw-r--r--source3/include/ntlmssp.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/include/ntlmssp.h b/source3/include/ntlmssp.h
index 60e604aa31..6c91250f50 100644
--- a/source3/include/ntlmssp.h
+++ b/source3/include/ntlmssp.h
@@ -41,7 +41,7 @@ enum NTLM_MESSAGE_TYPE
#define NTLMSSP_FEATURE_SIGN 0x00000002
#define NTLMSSP_FEATURE_SEAL 0x00000004
-typedef struct ntlmssp_state
+struct ntlmssp_state
{
unsigned int ref_count;
enum ntlmssp_role role;
@@ -137,4 +137,4 @@ typedef struct ntlmssp_state
response in at the time we want to process it.
Store it here, until we need it */
DATA_BLOB stored_response;
-} NTLMSSP_STATE;
+};