summaryrefslogtreecommitdiff
path: root/source4/lib/registry/regf.idl
diff options
context:
space:
mode:
authorwilco@baanhofman.nl <wilco@baanhofman.nl>2010-08-30 12:17:41 +0200
committerJelmer Vernooij <jelmer@samba.org>2010-09-19 12:34:55 -0700
commit1fc1be4685667f95e855fd2f781651c341e06fbd (patch)
tree50b8058734f8c8527161eb6abd4fddacffe694fb /source4/lib/registry/regf.idl
parent7efcb3ca66b12972de3707164c7bd415619a4bb8 (diff)
downloadsamba-1fc1be4685667f95e855fd2f781651c341e06fbd.tar.gz
samba-1fc1be4685667f95e855fd2f781651c341e06fbd.tar.bz2
samba-1fc1be4685667f95e855fd2f781651c341e06fbd.zip
Fix regf.idl, subkey and rootkey types were switched.
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
Diffstat (limited to 'source4/lib/registry/regf.idl')
-rw-r--r--source4/lib/registry/regf.idl4
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/lib/registry/regf.idl b/source4/lib/registry/regf.idl
index fd58ad2d61..064aaf09ce 100644
--- a/source4/lib/registry/regf.idl
+++ b/source4/lib/registry/regf.idl
@@ -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
};