On Tuesday 21 October 2008 01:05:34 Paul Bryan Roberts wrote:
Hi Paul,
I'm glad to see someone tackle this. One minor thing I have with this patch..
- ok(sid_use == SidTypeDomain, "Expected SidTypeDomain, got %d\n", SidTypeDomain);
seems like this should be
ok(sid_use == SidTypeDomain, "Expected SidTypeDomain(%d), got %d\n", SidTypeDomain, sid_use);
This was wrong before already, but perhaps you could fix that while touching that code anyway.
Cheers, Kai