Re: [PATCH 2/2] mshtml: Wine Gecko 0.9.0 release.

2008-12-29 Thread Jacek Caban
Dan Kegel wrote: > Doesn't build here, did you forget mutation.c? > Thanks, I've sent a complete version. Jacek

Re: Henri Verbeet : secur32: Handle SECPKG_ATTR_STREAM_SIZES in schan_QueryContextAttributesW().

2008-12-29 Thread Austin English
On Mon, Dec 29, 2008 at 10:17 PM, Detlef Riekenberg wrote: > On Mo, 2008-12-29 at 19:21 +0100, Christian Costa wrote: > >> Compilation failed here (FC8), I got this error : >> >> gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ >> -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing >>

re: [PATCH 2/2] mshtml: Wine Gecko 0.9.0 release.

2008-12-29 Thread Dan Kegel
Doesn't build here, did you forget mutation.c? make depend fails with: mutation.c: No such file or directory make[2]: *** [depend] Error 1 make[2]: Leaving directory `/home/dank/wine-git/dlls/mshtml'

Re: Henri Verbeet : secur32: Handle SECPKG_ATTR_STREAM_SIZES in schan_QueryContextAttributesW().

2008-12-29 Thread Detlef Riekenberg
On Mo, 2008-12-29 at 19:21 +0100, Christian Costa wrote: > Compilation failed here (FC8), I got this error : > > gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ > -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing > -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -g

Re: oleaut32: Correct the printf placeholder types.

2008-12-29 Thread Austin English
On Mon, Dec 29, 2008 at 2:49 PM, Danny Rawlins wrote: > Fix between unsigned and signed types this is my first wine patch but > you may already know me in irc as . > > Also I don't find any -W compiler option to warn against incorrect > placeholders like using a int for a string. > > Thanks to fo

Re: Henri Verbeet : secur32: Handle SECPKG_ATTR_STREAM_SIZES in schan_QueryContextAttributesW().

2008-12-29 Thread Christian Costa
Hi, Compilation failed here (FC8), I got this error : gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_REENTRANT -fPIC -Wall -pipe -fno-strict-aliasing -Wdeclaration-after-statement -Wwrite-strings -Wpointer-arith -g -O2 -o schannel.o schannel.c schannel.c:61: erreur: ‘gnutls_ma

Re: [6/6] secur32: Implement schannel DecryptMessage().

2008-12-29 Thread Henri Verbeet
2008/12/29 Rob Shearman : > Is it really expected for gnutls_record_recv to return GNUTLS_E_AGAIN > on the first call and for the code to have to return that to the > caller? That is what the code as it is at the moment does. It seems to > me as though you should return SEC_E_INCOMPLETE_MESSAGE if

Re: [6/6] secur32: Implement schannel DecryptMessage().

2008-12-29 Thread Rob Shearman
Sorry, this should have been in reply to patch [6/6]. 2008/12/29 Henri Verbeet : > 2008/12/29 Rob Shearman : >> 2008/12/28 Henri Verbeet : >>> +while (received < data_size) >>> +{ >>> +ret = pgnutls_record_recv(ctx->session, data + received, data_size >>> - received); >>> +

Re: [5/6] secur32: Implement schannel EncryptMessage().

2008-12-29 Thread Henri Verbeet
2008/12/29 Rob Shearman : > 2008/12/28 Henri Verbeet : >> +while (received < data_size) >> +{ >> +ret = pgnutls_record_recv(ctx->session, data + received, data_size >> - received); >> +if (ret < 0) >> +{ >> +if (ret == GNUTLS_E_AGAIN) >> +{ >

Re: [5/6] secur32: Implement schannel EncryptMessage().

2008-12-29 Thread Rob Shearman
2008/12/28 Henri Verbeet : > +while (received < data_size) > +{ > +ret = pgnutls_record_recv(ctx->session, data + received, data_size - > received); > +if (ret < 0) > +{ > +if (ret == GNUTLS_E_AGAIN) > +{ > +if (!received) Sh