summaryrefslogtreecommitdiff
path: root/source4/lib/registry/hive.c
AgeCommit message (Collapse)AuthorFilesLines
2008-02-21Remove yet more uses of global_loadparm.Jelmer Vernooij1-1/+2
(This used to be commit e01c1e87c0fe9709df7eb5b863f7ce85564174cd)
2008-01-18registry: Use correct return values.Jelmer Vernooij1-1/+1
(This used to be commit 98ebdbe52fd615ea62a3caa17acfe8bb31b8f85d)
2008-01-07r26689: registry: Return max_subkeynamelen, max_valnamelen and ↵Jelmer Vernooij1-2/+7
max_valbufsize in getkeyinfo(). (This used to be commit b06896d2378e536f5044dbe500a5232a89d6d0b5)
2007-12-24r26565: Fix python registry bindings. 'PROVISION_PYTHON=yes make test' works ↵Jelmer Vernooij1-1/+1
now. (This used to be commit 485d1fa3d17fe6cc7a0ecd80e8bac42d173bbb19)
2007-12-24r26564: More python bindings for registry code.Jelmer Vernooij1-1/+1
(This used to be commit f40fad9827d0e9567224bc1e64ea91e610a07a3f)
2007-12-21r26443: Remove global_loadparm instances.Jelmer Vernooij1-2/+3
(This used to be commit 8242c696235d1bfb402b5c276a57f36d93610545)
2007-10-10r25544: Cleanup some more indents in lib/registry.Günther Deschner1-35/+42
Guenther (This used to be commit 0d9826dc54057db2cfebcb806e5442c4dcf60daa)
2007-10-10r24703: Use standard registry diff files when provisioning rather thanJelmer Vernooij1-0/+2
LDIF files for the registry files. (This used to be commit 67ad556b7388e5d82756e0a3cfc596e44136329c)
2007-10-10r24667: Finally merge the registry improvements that Wilco Baan Hofman and I ↵Jelmer Vernooij1-0/+145
have been working on for at least half a year now. Contains the following improvements: * proper layering (finally!) for the registry library. Distinction is now made between 'real' backends (local, remote, wine, etc) and the low-level hive backends (regf, creg, ldb, ...) that are only used by the local registry backend * tests for all important hive and registry operations * re-enable RPC-WINREG tests (still needs more work though, as some return values aren't checked yet) * write support for REGF files * dir backend now supports setting/reading values, creating keys * support for storing security descriptors * remove CREG backend as it was incomplete, didn't match the data model and wasn't used at all anyway * support for parsing ADM files as used by the policy editor (see lib/policy) * support for parsing PREG files (format used by .POL files) * new streaming interface for registry diffs (improves speed and memory usage for regdiff/regpatch significantly) ... and fixes a large number of bugs in the registry code (This used to be commit 7a1eec6358bc863dfc671c542b7185d3e39d7b5a)