Author: tridge
Date: 2005-10-25 09:30:48 +0000 (Tue, 25 Oct 2005)
New Revision: 11285

WebSVN: 
http://websvn.samba.org/cgi-bin/viewcvs.cgi?view=rev&root=samba&rev=11285

Log:

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


Modified:
   branches/SAMBA_4_0/source/scripting/libjs/winreg.js


Changeset:
Modified: branches/SAMBA_4_0/source/scripting/libjs/winreg.js
===================================================================
--- branches/SAMBA_4_0/source/scripting/libjs/winreg.js 2005-10-25 05:28:00 UTC 
(rev 11284)
+++ branches/SAMBA_4_0/source/scripting/libjs/winreg.js 2005-10-25 09:30:48 UTC 
(rev 11285)
@@ -24,7 +24,7 @@
 {
        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 @@
        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;      
 

Reply via email to