http://bugs.winehq.org/show_bug.cgi?id=17096
--- Comment #7 from Dan Kegel dank@kegel.com 2009-08-08 07:46:26 --- I tried working around the ".rsp file created with mode 000" problem as follows:
--- a/server/file.c +++ b/server/file.c @@ -526,6 +526,9 @@ mode_t sd_to_mode( const struct security_descriptor *sd, const SID *owne /* no ACL means full access rights to anyone */ new_mode = S_IRWXU | S_IRWXO;
+// kludge + new_mode = S_IRWXU | S_IRWXO; + return new_mode & ~denied_mode; }
just to see what happened next. It seemed to get stuck in a loop,
fixme:ole:NdrCorrelationInitialize (0x33e758, 0x33e358, 1024, 0x0): stub fixme:netapi32:NetWkstaUserGetInfo Level 1 processing is partially implemented fixme:advapi:LsaOpenPolicy ((null),0x33df64,0x00000001,0x33df80) stub fixme:advapi:LsaClose (0xcafe) stub fixme:ntlm:ntlm_InitializeSecurityContextW using ntlm_auth cached credentials not supported err:rpc:RPCRT4_SecurePacket EncryptMessage failed with 0x80090321
fixme:ole:NdrCorrelationInitialize (0x33e758, 0x33e358, 1024, 0x0): stub fixme:netapi32:NetWkstaUserGetInfo Level 1 processing is partially implemented fixme:advapi:LsaOpenPolicy ((null),0x33df64,0x00000001,0x33df80) stub fixme:advapi:LsaClose (0xcafe) stub fixme:ntlm:ntlm_InitializeSecurityContextW using ntlm_auth cached credentials not supported err:rpc:RPCRT4_SecurePacket EncryptMessage failed with 0x80090321
...