diff options
author | Volker Lendecke <vl@samba.org> | 2020-11-04 11:09:06 +0100 |
---|---|---|
committer | Jeremy Allison <jra@samba.org> | 2020-11-10 19:49:33 +0000 |
commit | daa9d98cf8057d47b0f22a37d009f227b798f20e (patch) | |
tree | 8c41f357c05596bb7b031ebbcc7a297d572519bf /auth/ntlmssp | |
parent | fc88f2e0e4326519c00b1f6deb34eef9030099e4 (diff) | |
download | samba-daa9d98cf8057d47b0f22a37d009f227b798f20e.tar.gz |
auth: Align an integer type
Signed-off-by: Volker Lendecke <vl@samba.org>
Reviewed-by: Jeremy Allison <jra@samba.org>
Diffstat (limited to 'auth/ntlmssp')
-rw-r--r-- | auth/ntlmssp/ntlmssp_client.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/auth/ntlmssp/ntlmssp_client.c b/auth/ntlmssp/ntlmssp_client.c index 58e4e3d6f42..af1642d3256 100644 --- a/auth/ntlmssp/ntlmssp_client.c +++ b/auth/ntlmssp/ntlmssp_client.c @@ -430,7 +430,7 @@ NTSTATUS ntlmssp_client_challenge(struct gensec_security *gensec_security, const struct wbcBlob *wbc_auth_blob = NULL; const struct wbcBlob *wbc_session_key = NULL; wbcErr wbc_status; - int i; + size_t i; bool new_spnego = false; params.account_name = user; |