OpenJDK / portola / portola
changeset 13033:365efcc2d50c
7176784: Windows authentication not working on some computers
Reviewed-by: michaelm
author | chegar |
---|---|
date | Mon, 25 Jun 2012 14:19:38 +0100 |
parents | 9f6734b09d79 |
children | dad69f88fe36 27d52f97a5cc |
files | jdk/src/windows/native/sun/net/www/protocol/http/ntlm/NTLMAuthSequence.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/jdk/src/windows/native/sun/net/www/protocol/http/ntlm/NTLMAuthSequence.c Wed Jun 20 22:40:32 2012 -0400 +++ b/jdk/src/windows/native/sun/net/www/protocol/http/ntlm/NTLMAuthSequence.c Mon Jun 25 14:19:38 2012 +0100 @@ -151,7 +151,7 @@ VOID *pInput = 0; DWORD inputLen; - CHAR buffOut[512]; + CHAR buffOut[1024]; jboolean isCopy; SECURITY_STATUS ss; SecBufferDesc OutBuffDesc; @@ -178,7 +178,7 @@ OutBuffDesc.cBuffers = 1; OutBuffDesc.pBuffers = &OutSecBuff; - OutSecBuff.cbBuffer = 512; + OutSecBuff.cbBuffer = 1024; OutSecBuff.BufferType = SECBUFFER_TOKEN; OutSecBuff.pvBuffer = buffOut;