summaryrefslogtreecommitdiffstats
path: root/source3/registry
Commit message (Expand)AuthorAgeFilesLines
* Revert "Fix a O(n^2) algorithm in regdb_fetch_keys()"Michael Adam2009-02-261-27/+5
* s3:registry: wrap deletekey_recursive in one big transaction.Michael Adam2009-02-261-2/+38
* s3:registry: provide transaction_start|commit|cancel fns for the registry tdbMichael Adam2009-02-261-0/+18
* Wrap creating the sorted subkey cache in a transactionVolker Lendecke2009-02-261-3/+31
* Add a comment describing the sorted subkeysVolker Lendecke2009-02-261-0/+23
* Add sorted subkey cacheVolker Lendecke2009-02-261-19/+174
* Quieten down a boatload of shadowed variable warnings on Solaris.Jeremy Allison2009-02-231-4/+4
* Fix printf type warning.Jeremy Allison2009-02-191-2/+2
* Fix a O(n^2) algorithm in regdb_fetch_keys()Volker Lendecke2009-02-191-5/+27
* Fix a buffer handling bug when adding lots of registry keysVolker Lendecke2009-02-191-9/+24
* Remove a pointless NULL checkVolker Lendecke2009-02-141-3/+0
* Fix some nonempty blank linesVolker Lendecke2009-02-141-22/+22
* s3:registry: always provision the registry, not only in smbd.Michael Adam2009-01-282-8/+8
* Add iconv_convenience argument to size functions.Jelmer Vernooij2009-01-012-3/+3
* Rename dos_errstr() to win_errstr() for consistency with Samba 4.Jelmer Vernooij2008-11-014-6/+6
* Unify se_access_check with the S4 code. Will makeJeremy Allison2008-10-311-1/+2
* Use separate make variables for libutil and libcrypto.Jelmer Vernooij2008-10-181-1/+1
* Use {u,}int64_t instead of SMB_BIG_{U,}INT.Jelmer Vernooij2008-10-141-5/+5
* Remove SEC_ACCESS. It's a uint32_t.Jeremy Allison2008-10-091-7/+3
* first cut at adding full transactions for ctdb to samba3Andrew Tridgell2008-08-131-3/+3
* registry: use _bystring wrappers to dbwrap_trans_(store|delete).Michael Adam2008-08-051-6/+3
* registry: bump debug level to 1 in regdb_init() if storing version string fails.Michael Adam2008-07-151-1/+1
* registry: bump debug level to 1 in regdb_init() if opening the registry fails.Michael Adam2008-07-151-1/+1
* registry: fix logic in deleting subkeys record in regdb_fetch_keys().Michael Adam2008-07-091-2/+6
* registry: improve logic for deleting value records in regdb_store_keys().Michael Adam2008-07-091-2/+9
* registry: fetch regdb_fetch_keys() when a key exists but not its subkey-record.Michael Adam2008-07-081-9/+10
* registry: add removal of secdesc of a key to regdb_store_keys().Michael Adam2008-05-081-0/+17
* registry: add comments to removing lists in regdb_store_keys().Michael Adam2008-05-081-0/+4
* registry: change order of deleting value and subkey lists in store_keys().Michael Adam2008-05-081-16/+13
* registry: adapt comment to first step in regdb_store_keys().Michael Adam2008-05-081-1/+1
* registry: adapt comment of last step in regdb_store_keys().Michael Adam2008-05-081-1/+1
* registry: regdb_store_keys: move storing the subkey list down after removing ...Michael Adam2008-05-081-8/+8
* registry: add comment explaining workflow to make store_keys safe w/o transac...Michael Adam2008-05-081-0/+21
* registry: check for existence of non base key in regdb_store_keys() before pr...Michael Adam2008-05-081-0/+4
* registry: add a function regdb_key_is_base_key() to check whether is composite.Michael Adam2008-05-081-0/+33
* registry: check for existence of key in regdb_set_secdesc() before proceeding.Michael Adam2008-05-081-0/+5
* registry: check for existence of key in regdb_get_secdesc() before proceeding.Michael Adam2008-05-081-0/+5
* registry: check for existence of key in regdb_store_values() before proceeding.Michael Adam2008-05-081-0/+4
* registry: check for existence of key in regdb_fetch_keys() before proceeding.Michael Adam2008-05-081-0/+4
* registry: check for existence of key in regdb_fetch_values() first.Michael Adam2008-05-081-0/+4
* registry: free talloc context on error path in regdb_fetch_values().Michael Adam2008-05-081-1/+1
* registry: Implement new semantics for existence of registry key in tdb.Michael Adam2008-05-081-3/+52
* registry: make normalize_reg_path() strip leading and trailing '/' chars.Michael Adam2008-05-081-7/+26
* registry: free temporary data in regdb_fetch_key_internal().Michael Adam2008-05-081-1/+5
* registry: change order of arguments of regdb_fetch_key_internal()Michael Adam2008-05-081-4/+4
* registry: skip writes of existing keys in init_registry_data().Michael Adam2008-04-301-0/+3
* registry: save writes in init_registry_data() if data does already exist.Michael Adam2008-04-301-12/+43
* registry: check for existence of key init_registry_key and possibly save a wr...Michael Adam2008-04-301-0/+4
* registry: add function regdb_key_exists() to check for existence of a key.Michael Adam2008-04-301-0/+17
* registry: use regdb_fetch_key_internal() in regdb_fetch_values().Michael Adam2008-04-301-5/+1