Module: wine Branch: master Commit: f6129d7d354002d67c3868afc7cf5a7fe48b0af8 URL: http://source.winehq.org/git/wine.git/?a=commit;h=f6129d7d354002d67c3868afc7...
Author: Henri Verbeet hverbeet@gmail.com Date: Mon Oct 20 00:15:12 2008 +0200
secur32: Don't make the pBuffer parameter to schan_QueryCredentialsAttributes() const.
---
dlls/secur32/schannel.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/dlls/secur32/schannel.c b/dlls/secur32/schannel.c index 402383f..6391877 100644 --- a/dlls/secur32/schannel.c +++ b/dlls/secur32/schannel.c @@ -137,7 +137,7 @@ static void *schan_free_handle(ULONG_PTR handle_idx, enum schan_handle_type type }
static SECURITY_STATUS schan_QueryCredentialsAttributes( - PCredHandle phCredential, ULONG ulAttribute, const VOID *pBuffer) + PCredHandle phCredential, ULONG ulAttribute, VOID *pBuffer) { SECURITY_STATUS ret;