s3:ntlmssp: move to C99 integer types in ntlmssp.h
authorAndrew Bartlett <abartlet@samba.org>
Tue, 22 Dec 2009 07:50:55 +0000 (18:50 +1100)
committerStefan Metzmacher <metze@samba.org>
Tue, 22 Dec 2009 20:07:52 +0000 (21:07 +0100)
Andrew Bartlett

source3/include/ntlmssp.h

index d4eec08b395aea57d9f8d4b91144dd9d15a72815..60e604aa315bc0384e7c2db8c64c03afa7f80c00 100644 (file)
@@ -46,7 +46,7 @@ typedef struct ntlmssp_state
        unsigned int ref_count;
        enum ntlmssp_role role;
        enum server_types server_role;
-       uint32 expected_state;
+       uint32_t expected_state;
 
        bool unicode;
        bool use_ntlmv2;
@@ -64,7 +64,7 @@ typedef struct ntlmssp_state
        DATA_BLOB nt_resp;
        DATA_BLOB session_key;
 
-       uint32 neg_flags; /* the current state of negotiation with the NTLMSSP partner */
+       uint32_t neg_flags; /* the current state of negotiation with the NTLMSSP partner */
 
        void *auth_context;
 
@@ -126,12 +126,12 @@ typedef struct ntlmssp_state
        struct arcfour_state send_seal_arc4_state;
        struct arcfour_state recv_seal_arc4_state;
 
-       uint32 ntlm2_send_seq_num;
-       uint32 ntlm2_recv_seq_num;
+       uint32_t ntlm2_send_seq_num;
+       uint32_t ntlm2_recv_seq_num;
 
        /* ntlmv1 */
        struct arcfour_state ntlmv1_arc4_state;
-       uint32 ntlmv1_seq_num;
+       uint32_t ntlmv1_seq_num;
 
        /* it turns out that we don't always get the
           response in at the time we want to process it.