From 3c27009fc807bf4e97541eabd5027638c756fd61 Mon Sep 17 00:00:00 2001 From: Henri Verbeet Date: Mon, 20 Oct 2008 00:15:12 +0200 Subject: 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; -- 1.5.6.4