Module: wine Branch: master Commit: d987cc3d83bd234d1c81a4262fd66a36a8c9341a URL: http://source.winehq.org/git/wine.git/?a=commit;h=d987cc3d83bd234d1c81a4262f...
Author: Andrey Gusev andrey.goosev@gmail.com Date: Mon May 16 22:38:02 2016 +0300
secur32: Fix a typo in comment.
Signed-off-by: Andrey Gusev andrey.goosev@gmail.com Signed-off-by: Alexandre Julliard julliard@winehq.org
---
dlls/secur32/ntlm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/dlls/secur32/ntlm.c b/dlls/secur32/ntlm.c index a38d81a..d24c763 100644 --- a/dlls/secur32/ntlm.c +++ b/dlls/secur32/ntlm.c @@ -1460,7 +1460,7 @@ static SECURITY_STATUS SEC_ENTRY ntlm_RevertSecurityContext(PCtxtHandle phContex * As both MakeSignature and VerifySignature need this, but different keys * are needed for NTLM2, the logic goes into a helper function. * To ensure maximal reusability, we can specify the direction as NTLM_SEND for - * signing/encrypting and NTLM_RECV for verfying/decrypting. When encrypting, + * signing/encrypting and NTLM_RECV for verifying/decrypting. When encrypting, * the signature is encrypted after the message was encrypted, so * CreateSignature shouldn't do it. In this case, encrypt_sig can be set to * false.