Fix regf.idl, subkey and rootkey types were switched.
authorwilco@baanhofman.nl <wilco@baanhofman.nl>
Mon, 30 Aug 2010 10:17:41 +0000 (12:17 +0200)
committerJelmer Vernooij <jelmer@samba.org>
Sun, 19 Sep 2010 19:34:55 +0000 (12:34 -0700)
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
source4/lib/registry/regf.idl

index fd58ad2d61369c1a98510c76b79af0ace33b6673..064aaf09cee2f84f52872c922ffddd28913a96b0 100644 (file)
@@ -74,8 +74,8 @@ interface regf
        };
 
        [noprint] enum reg_key_type { 
-               REG_ROOT_KEY = 0x20
-               REG_SUB_KEY  = 0x2C
+               REG_ROOT_KEY = 0x2C
+               REG_SUB_KEY  = 0x20
                REG_SYM_LINK = 0x10 
        };