From 1fc1be4685667f95e855fd2f781651c341e06fbd Mon Sep 17 00:00:00 2001 From: "wilco@baanhofman.nl" Date: Mon, 30 Aug 2010 12:17:41 +0200 Subject: Fix regf.idl, subkey and rootkey types were switched. Signed-off-by: Jelmer Vernooij --- source4/lib/registry/regf.idl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source4/lib/registry/regf.idl') 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 }; -- cgit