1
0
mirror of https://github.com/samba-team/samba.git synced 2025-07-30 19:42:05 +03:00

r11285: fixed winreg.js for the recent change to winreg.idl

(This used to be commit 27f46b4f18)
This commit is contained in:
Andrew Tridgell
2005-10-25 09:30:48 +00:00
committed by Gerald (Jerry) Carter
parent b0044d1950
commit 75d3a8f6dc

View File

@ -24,7 +24,7 @@ function __winreg_open_hive(hive)
{
var io = irpcObj();
io.input.system_name = NULL;
io.input.access_required = this.SEC_FLAG_MAXIMUM_ALLOWED;
io.input.access_mask = this.SEC_FLAG_MAXIMUM_ALLOWED;
var status;
if (hive == "HKLM") {
status = this.winreg_OpenHKLM(io);
@ -248,7 +248,7 @@ function __winreg_create_key(path, key)
io.input.name = key;
io.input.class = NULL;
io.input.options = 0;
io.input.access_required = this.SEC_FLAG_MAXIMUM_ALLOWED;
io.input.access_mask = this.SEC_FLAG_MAXIMUM_ALLOWED;
io.input.secdesc = NULL;
io.input.action_taken = 0;