summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWilco Baan Hofman <wilco@baanhofman.nl>2009-10-15 13:18:52 +0200
committerJelmer Vernooij <jelmer@samba.org>2009-11-15 19:26:51 +0100
commitdf3451aec0e841da311fda837db6e79e09b88e3c (patch)
treeaed0e9ae577b0c4395c950eb17f2af0a5fd667db
parentc319b965a1a8ab2fe54d7def06f4a41fb193dde3 (diff)
downloadsamba-df3451aec0e841da311fda837db6e79e09b88e3c.tar.gz
samba-df3451aec0e841da311fda837db6e79e09b88e3c.tar.bz2
samba-df3451aec0e841da311fda837db6e79e09b88e3c.zip
Fix writing corrupt registries because of hardcoded version string in IDL.
Signed-off-by: Jelmer Vernooij <jelmer@samba.org>
-rw-r--r--source4/lib/registry/regf.idl2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/lib/registry/regf.idl b/source4/lib/registry/regf.idl
index ffd7072b7a..fd58ad2d61 100644
--- a/source4/lib/registry/regf.idl
+++ b/source4/lib/registry/regf.idl
@@ -24,7 +24,7 @@ interface regf
[noprint] struct regf_version {
[value(1)] uint32 major;
- [value(3)] uint32 minor;
+ uint32 minor;
[value(0)] uint32 release;
[value(1)] uint32 build;
};