1
0
mirror of https://github.com/samba-team/samba.git synced 2025-03-27 22:50:26 +03:00

Correct "intialise" typos.

Signed-off-by: Chris Lamb <chris@chris-lamb.co.uk>
Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Reviewed-by: Garming Sam <garming@catalyst.net.nz>
This commit is contained in:
Chris Lamb 2017-02-18 08:59:59 +13:00 committed by Garming Sam
parent 1134f4f177
commit a2fbe8b915
2 changed files with 2 additions and 2 deletions

View File

@ -685,7 +685,7 @@ NTSTATUS ntlmssp_sign_reset(struct ntlmssp_state *ntlmssp_state,
NTSTATUS ntlmssp_sign_init(struct ntlmssp_state *ntlmssp_state)
{
if (ntlmssp_state->session_key.length < 8) {
DEBUG(3, ("NO session key, cannot intialise signing\n"));
DEBUG(3, ("NO session key, cannot initialise signing\n"));
return NT_STATUS_NO_USER_SESSION_KEY;
}

View File

@ -167,7 +167,7 @@ static void smb_signing_md5(const DATA_BLOB *mac_key,
*/
MD5Init(&md5_ctx);
/* intialise with the key */
/* initialise with the key */
MD5Update(&md5_ctx, mac_key->data, mac_key->length);
/* copy in the first bit of the SMB header */