Age | Commit message (Expand) | Author | Files | Lines |
2008-04-03 | registry: remove parameter checks from smbconf backend: they are in libsmbconf. | Michael Adam | 1 | -191/+1 |
2008-04-01 | Convert dbwrap_trans_delete to NTSTATUS | Volker Lendecke | 1 | -5/+4 |
2008-04-01 | Convert dbwrap_trans_store to NTSTATUS | Volker Lendecke | 1 | -11/+16 |
2008-04-01 | regdb: let regdb_fetch_keys() handle NULL and failure cases in the same way a... | Stefan Metzmacher | 1 | -1/+0 |
2008-04-01 | regdb: get the seqnum before the record, to not miss something | Stefan Metzmacher | 1 | -4/+4 |
2008-04-01 | regdb: use dbwrap->fetch() instead of fetch_locked() for readonly access" | Stefan Metzmacher | 1 | -10/+12 |
2008-03-31 | registry: reg_deletevalue should return error, when the value does not exist. | Michael Adam | 1 | -0/+18 |
2008-03-30 | Revert "regdb: use dbwrap->fetch() instead of fetch_locked() for readonly acc... | Michael Adam | 1 | -11/+10 |
2008-03-27 | regdb: use == 0 (instead of != -1) as indicator for success of dbwrap_trans_[... | Michael Adam | 1 | -4/+4 |
2008-03-27 | regdb: use != 0 instead of == -1 check for transaction_[commit|cancel] | Michael Adam | 1 | -6/+6 |
2008-03-27 | regdb: use db_open_trans() | Stefan Metzmacher | 1 | -5/+6 |
2008-03-27 | regdb: use regdb->transaction_start(regdb) != 0 consistent | Stefan Metzmacher | 1 | -3/+3 |
2008-03-27 | regdb: use dbwrap->fetch() instead of fetch_locked() for readonly access | Stefan Metzmacher | 1 | -10/+11 |
2008-03-27 | regdb: use dbwrap_trans_store_int32 | Stefan Metzmacher | 1 | -1/+1 |
2008-03-23 | Fix Coverity ID 471 | Volker Lendecke | 1 | -1/+1 |
2008-03-23 | Fix Coverity ID 477 | Volker Lendecke | 1 | -2/+1 |
2008-03-23 | Fix Coverity ID 478 | Volker Lendecke | 1 | -2/+1 |
2008-03-22 | registry: add reg_init_basic() - init registry with only the db backend. | Michael Adam | 1 | -0/+45 |
2008-03-22 | registry: close registry in exit path in registry_init_smbconf(). | Michael Adam | 1 | -2/+1 |
2008-03-22 | registry: some whitespace cleanup in init_registry(). | Michael Adam | 1 | -9/+10 |
2008-03-22 | registry: remove unneeded talloc stackframe variable. | Michael Adam | 1 | -2/+0 |
2008-03-22 | registry: close regdb in error path (and use it) in init_registry(). | Michael Adam | 1 | -4/+3 |
2008-03-21 | registry: fix registry_init_smbconf() to close the registry at the end. | Michael Adam | 1 | -0/+2 |
2008-03-21 | Fix Coverity ID 506 | Volker Lendecke | 1 | -1/+4 |
2008-03-20 | registry: use available string constant in debug statement. | Michael Adam | 1 | -1/+1 |
2008-03-20 | registry: in regdb_init, not only complain about INFO/version, store it... | Michael Adam | 1 | -0/+8 |
2008-03-20 | registry: reformat regdb_init() slightly, breaking long lines. | Michael Adam | 1 | -6/+9 |
2008-03-20 | registry: untangle assignment and if-statement in regdb_init(). | Michael Adam | 1 | -2/+2 |
2008-03-20 | registry: separate initialization of registry data from regdb_init(). | Michael Adam | 3 | -9/+14 |
2008-03-20 | registry: add a transaction wrapper to init_registry_key_internal(). | Michael Adam | 1 | -0/+31 |
2008-03-20 | registry: refactor creation of subkeys out of init_registry_data(). | Michael Adam | 1 | -79/+92 |
2008-03-18 | Bind Group Policy processing closer to the samba registry. | Günther Deschner | 1 | -0/+8 |
2008-03-17 | Coverity fixes | Marc VanHeyningen | 2 | -2/+6 |
2008-03-17 | registry: untangle assignment and if-clause in init_registry_data(). | Michael Adam | 1 | -1/+2 |
2008-03-17 | registry: convert regdb REGISTRY_OPS to named struct initializers. | Michael Adam | 1 | -9/+8 |
2008-03-17 | registry: use talloc instead of malloc and provide common exit point | Michael Adam | 1 | -13/+13 |
2008-03-17 | registry: remove an unused variable from regdb_set_secdesc(). | Michael Adam | 1 | -6/+0 |
2008-03-17 | registry: untangle assignments and if statements in regdb_set_secdesc(). | Michael Adam | 1 | -6/+7 |
2008-03-17 | registry: use talloc_stackframe instead of hand crafted temporary context. | Michael Adam | 1 | -5/+1 |
2008-03-17 | registry: use talloc instead of malloc for tdb data in regdb_store_values(). | Michael Adam | 1 | -2/+1 |
2008-03-17 | registry: don't use talloc_stackframe() instead of talloc_tos() als temp ctx | Michael Adam | 1 | -14/+14 |
2008-03-17 | registry: don't leak to talloc stack in regdb_fetch_keys(). | Michael Adam | 1 | -1/+2 |
2008-03-17 | registry: explicitly use talloc context instead of talloc_tos() | Michael Adam | 1 | -2/+2 |
2008-03-17 | registry: don't leak on success path in regdb_store_keys(). | Michael Adam | 1 | -0/+1 |
2008-03-17 | registry: allocate tempory data in talloc stack in regdb_store_keys(). | Michael Adam | 1 | -6/+4 |
2008-03-17 | registry: separate cancel and failur exit paths in regdb_store_keys(). | Michael Adam | 1 | -19/+20 |
2008-03-17 | registry: don't leak memory on transaction fail in regdb_store_keys(). | Michael Adam | 1 | -2/+2 |
2008-03-17 | registry: don't leak (to talloc_tos()) in regdb_store_keys(). | Michael Adam | 1 | -1/+2 |
2008-03-17 | registry: reformat regdb_store_keys_internal(), killing long lines. | Michael Adam | 1 | -9/+13 |
2008-03-17 | registry: don't leak (to talloc_tos()) in regdb_store_keys_internal(). | Michael Adam | 1 | -1/+2 |