Re: wineserver socket file and DOS attacks

2008-05-04 Thread Francois Gouget
On Wed, 30 Apr 2008, Steven Elliott wrote: > I have some concerns about the location of the socket file that > wineserver uses. Since by default the current location is in /tmp my > concern is that anyone can stop anyone else from using wine just by > creating a directory named /tmp/.wine-500.

Re: Time-based releases idea

2008-05-04 Thread Steven Edwards
On Sun, May 4, 2008 at 11:13 PM, Dan Kegel <[EMAIL PROTECTED]> wrote: > I look forward to discussing this idea... perhaps we shouldn't > bother to until after 1.0 is released, but I wanted to get it out > early so the discussion can begin in time for us to move on it > if we want to. I think h

Re: Time-based releases idea

2008-05-04 Thread Austin English
On Sun, May 4, 2008 at 10:13 PM, Dan Kegel <[EMAIL PROTECTED]> wrote: > I just wrote up an idea related to release management for post-1.0 > wine releases. It's online at > http://wiki.winehq.org/TimeBasedReleases > Essentially, the idea is to release in March and September, > in time for the

Time-based releases idea

2008-05-04 Thread Dan Kegel
I just wrote up an idea related to release management for post-1.0 wine releases. It's online at http://wiki.winehq.org/TimeBasedReleases Essentially, the idea is to release in March and September, in time for the April and October releases of Ubuntu. For instance, following this strategy, we m

Re: [PATCH] Add SIO_KEEPALIVE_VALS support to winsock

2008-05-04 Thread Juan Lang
Hi, On Sun, May 4, 2008 at 5:50 AM, Couriousous <[EMAIL PROTECTED]> wrote: > The following patch implement the missing parts and allow altium 6 to > works perfectly with wine ! Patches without your full name are unlikely to get accepted. Would you mind resending with your full name? Thanks, --J

Re: winetest problems

2008-05-04 Thread James Hawkins
On Sun, May 4, 2008 at 12:42 PM, John Klehm <[EMAIL PROTECTED]> wrote: > On Sun, May 4, 2008 at 1:15 AM, James Hawkins <[EMAIL PROTECTED]> wrote: > > I'm still not getting any results with the latest script. I think > > it's a problem with the version being queried: > > > > Version 4 > >

Re: winetest problems

2008-05-04 Thread John Klehm
On Sun, May 4, 2008 at 1:15 AM, James Hawkins <[EMAIL PROTECTED]> wrote: > I'm still not getting any results with the latest script. I think > it's a problem with the version being queried: > > Version 4 > Tests from build 6d4dae17d27008f501ccc4cf3ec87b00c240dada > Archive: - > Tag: jh-win2k

Re: credui: Danish translation

2008-05-04 Thread Robert Shearman
Jens Albretsen wrote: > Changelog: > Danish translation of credui > > +LANGUAGE LANG_DANISH, SUBLANG_DEFAULT > + > +IDD_CREDDIALOG DIALOG DISCARDABLE 0, 0, 213, 149 > +STYLE DS_MODALFRAME | DS_NOIDLEMSG | DS_CENTER | WS_POPUP | WS_CAPTION | > WS_SYSMENU > +CAPTION "IDS_TITLEFORMAT" > +FONT 8,

Re: winex11.drv: Set the size of returned DEVMODE to least common one as XP does

2008-05-04 Thread Robert Shearman
David Adam wrote: > Hello > > >-devmode->dmSize = sizeof(DEVMODEW); > >-devmode->dmSpecVersion = MAKEWORD(1,4); > >-devmode->dmDriverVersion = MAKEWORD(1,4); > >+devmode->dmSize = FIELD_OFFSET(DEVMODEW, dmICMMethod); > > >+devmode->dmSpecVersion = DM_SPECVERSION; > >+devmode

winex11.drv: Set the size of returned DEVMODE to least common one as XP does

2008-05-04 Thread David Adam
Hello >-devmode->dmSize = sizeof(DEVMODEW); >-devmode->dmSpecVersion = MAKEWORD(1,4); >-devmode->dmDriverVersion = MAKEWORD(1,4); >+devmode->dmSize = FIELD_OFFSET(DEVMODEW, dmICMMethod); >+devmode->dmSpecVersion = DM_SPECVERSION; >+devmode->dmDriverVersion = DM_SPECVERSION;

Steampowered.com has sent me ~10 e-mails

2008-05-04 Thread Brian Fuller
I've gotten ~10 e-mails from steampowered.com regarding this issue. Everyone of them is virtually nothing but quoted information. I had TF2 crash on my computer, then I went back in, snagged the memory dumps and submitted them to steampowered.com, told them I was on the wine list and I needed bet

[PATCH] Add SIO_KEEPALIVE_VALS support to winsock

2008-05-04 Thread Couriousous
Hello When Altium 6 is used with a license server, it need the WSAIoctl() with SIO_KEEPALIVE_VALS control code to succeed, otherwise it cannot connect to the license server. The following patch implement the missing parts and allow altium 6 to works perfectly with wine ! Regards, Philippe --