Re: [Patch] Loading the registry hive on Win9x (part 2)

2004-12-02 Thread Pierre A. Humblet
At 10:25 AM 11/22/2004 -0500, Christopher Faylor wrote: > >Other than that, the change looks fine. Done Pierre

Re: [Patch] Loading the registry hive on Win9x (part 2)

2004-11-22 Thread Christopher Faylor
On Mon, Nov 22, 2004 at 10:48:30AM -0500, Pierre A. Humblet wrote: >Christopher Faylor wrote: >> >> On Sun, Nov 21, 2004 at 09:55:38PM -0500, Pierre A. Humblet wrote: >> >- got_something_from_registry = regopt ("default"); >> > if (myself->progname[0]) >> >-got_something_from_registry = reg

Re: [Patch] Loading the registry hive on Win9x (part 2)

2004-11-22 Thread Pierre A. Humblet
Christopher Faylor wrote: > > On Sun, Nov 21, 2004 at 09:55:38PM -0500, Pierre A. Humblet wrote: > >- got_something_from_registry = regopt ("default"); > > if (myself->progname[0]) > >-got_something_from_registry = regopt (myself->progname) || > >got_something_from_registry; > >+got_s

Re: [Patch] Loading the registry hive on Win9x (part 2)

2004-11-22 Thread Christopher Faylor
On Sun, Nov 21, 2004 at 09:55:38PM -0500, Pierre A. Humblet wrote: >- got_something_from_registry = regopt ("default"); > if (myself->progname[0]) >-got_something_from_registry = regopt (myself->progname) || >got_something_from_registry; >+got_something_from_registry = regopt (myself->p

[Patch] Loading the registry hive on Win9x (part 2)

2004-11-21 Thread Pierre A. Humblet
This is the second part of the patch to also load the registry hive on Win9x during seteuid, and to apply the method recommended in MS KB 199190 to avoid using HKCU. The main change is a new reg_key constructor that does not use HKCU and that can also use HKLM. There are collateral changes in pat