diff options
author | wilco@baanhofman.nl <wilco@baanhofman.nl> | 2010-08-30 12:17:41 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2010-09-19 12:34:55 -0700 |
commit | 1fc1be4685667f95e855fd2f781651c341e06fbd (patch) | |
tree | 50b8058734f8c8527161eb6abd4fddacffe694fb /source4/lib | |
parent | 7efcb3ca66b12972de3707164c7bd415619a4bb8 (diff) | |
download | samba-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')
-rw-r--r-- | source4/lib/registry/regf.idl | 4 |
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 }; |