Andrew Talbot : secur32: Declare a function static.
Module: wine Branch: master Commit: da90b4a8dd075f048d3eef8eef3bd0993aedffef URL: http://source.winehq.org/git/wine.git/?a=commit;h=da90b4a8dd075f048d3eef8eef... Author: Andrew Talbot <Andrew.Talbot(a)talbotville.com> Date: Sat Jan 27 18:08:50 2007 +0000 secur32: Declare a function static. --- dlls/secur32/util.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/dlls/secur32/util.c b/dlls/secur32/util.c index ed39336..3994f51 100644 --- a/dlls/secur32/util.c +++ b/dlls/secur32/util.c @@ -145,7 +145,7 @@ SECURITY_STATUS SECUR32_CreateNTLMv1Sess return SEC_E_OK; } -void SECUR32_CalcNTLMv2Subkey(PBYTE session_key, const char *magic, PBYTE subkey) +static void SECUR32_CalcNTLMv2Subkey(PBYTE session_key, const char *magic, PBYTE subkey) { MD5_CTX ctx;
participants (1)
-
Alexandre Julliard