summaryrefslogtreecommitdiffstats
path: root/source3/registry
Commit message (Collapse)AuthorAgeFilesLines
...
* s3-registry: missed one perflib keyname delimiter.Günther Deschner2010-06-281-1/+1
| | | | Guenther
* s3-registry: fix printing keyname delimiter.Günther Deschner2010-06-281-8/+8
| | | | Guenther
* s3-registry: fix perfmon keyname delimiter.Günther Deschner2010-06-281-2/+2
| | | | Guenther
* s3-registry: Fixed keyname delimiter in KEY_CURRENT_VERSION_NORM.Andreas Schneider2010-06-281-1/+1
|
* s3:registry: use regdb_store_regdb_version() in regdb_init().Michael Adam2010-06-251-13/+2
|
* s3:registry: use regdb_store_regdb_version() in regdb_upgrade_v1_to_v2()Michael Adam2010-06-251-13/+8
|
* s3:registry: add a function regdb_store_regdb_version()Michael Adam2010-06-251-0/+21
|
* s3:registry: rename regdb_upgrade_to_version_2() -> regdb_upgrade_v1_to_v2()Michael Adam2010-06-251-2/+2
|
* s3:registry: improve logic of upgrade code in regdb_init()Michael Adam2010-06-251-30/+45
| | | | Don't overwrite unknown versions (0 or > 2) of the registry.
* s3:registry: fix some debug messages in regdb_ini()Michael Adam2010-06-251-4/+4
|
* s3-registry: Convert registry key delimiter from slash to backslash.Andreas Schneider2010-06-254-45/+24
| | | | | | | This is needed to support keynames containing a '/' like TCP/IP. Which is used in serveral standard paths. Signed-off-by: Michael Adam <obnox@samba.org>
* s3-registry: Added a db upgrade function to normalize the key delimiter.Andreas Schneider2010-06-251-6/+106
| | | | | | | This converts the key delimiter from a slash to a blackslash. We need to support keynames with a backslash. Signed-off-by: Michael Adam <obnox@samba.org>
* s3:registry: remove unused function normalize_dbkey()Michael Adam2010-06-242-11/+0
|
* s3:registry: use normalize_reg_path() in regdb_set_secdesc()Michael Adam2010-06-241-1/+6
| | | | instead of normalize_dbkey
* s3:registry: use normalize_reg_path() in regdb_get_secdesc()Michael Adam2010-06-241-1/+6
| | | | instead of normalize_dbkey.
* s3-build: only include generated spoolss headers (not ndr headers).Günther Deschner2010-06-031-0/+1
| | | | Guenther
* s3-build: only use ndr_security.h where needed.Günther Deschner2010-05-312-0/+2
| | | | Guenther
* s3:registry: add C for substantial changes to reg_objectsMichael Adam2010-05-252-0/+2
|
* s3:registry:reg_objects: Remove use of uint{8,16,32} in favour of C99 typesMichael Adam2010-05-252-35/+35
|
* s3:registry: move reg_objects.h to registry/ and use it only where neededMichael Adam2010-05-2513-0/+87
| | | | | Every place outside of registry/ where this is used, should probably be changed to use pure reg_api.c code.
* s3:registry: hide definition of regval_ctr and regval_blob in reg_objects.cMichael Adam2010-05-251-0/+18
|
* s3:registry: use regval_ctr/blob accessor functoin in reg_eventlog.cMichael Adam2010-05-251-7/+13
|
* s3:registry: user regval_ctr/blob accessor functions in reg_backend_db.cMichael Adam2010-05-251-10/+10
|
* s3:registry: use regval_ctr/blob accessor functions in reg_api.cMichael Adam2010-05-251-33/+38
|
* s3:registry:reg_objects: add regval_ctr_set_seqnum()Michael Adam2010-05-251-0/+11
|
* s3:registry:reg_objects: add regval_ctr_get_seqnum()Michael Adam2010-05-251-0/+9
|
* s3:registry:reg_objects: add regval_ctr_init()Michael Adam2010-05-251-0/+17
|
* s3:registry: move definition of registry_hook to reg_init_full.c - it's only ↵Michael Adam2010-05-251-0/+5
| | | | user
* s3:registry: extract registry_pull/push_value prototypes into own headerMichael Adam2010-05-253-0/+34
| | | | reg_util_marshalling.h and use them only where needed.
* s3:registry: rename lib/util_reg_api.c to registry/reg_util_marshalling.cMichael Adam2010-05-251-0/+215
|
* s3:registry: rename reg_util.{c,h} to reg_util_internal.{c,h}Michael Adam2010-05-257-6/+6
|
* s3:registry: move prototype registry_create_admin_token() to new header ↵Michael Adam2010-05-252-0/+27
| | | | | | reg_util_token.h and use it only where necessary.
* s3:registry: move registry_create_admin_token() to new reg_util_token.cMichael Adam2010-05-252-38/+58
|
* s3:registry: extract reg_eventlog prototypes to header of their ownMichael Adam2010-05-253-0/+31
| | | | and use them only where needed.
* s3:registry: extract reg_perfcount prototypes into header of their own.Michael Adam2010-05-255-0/+37
| | | | And use them only when necessary.
* s3:registry: extraxt the reg_dispatcher prototypes into their own header.Michael Adam2010-05-253-0/+46
| | | | And use them only where needed.
* s3:registry: extract the reg_backend_db prototypes into their own header.Michael Adam2010-05-258-0/+48
| | | | And use them only where needed.
* s3:registry: adapt callers of regval_ctr_addvalue to uint8 * instead of char *Michael Adam2010-05-257-38/+38
|
* s3:registry: fix regval_ctr_addvalue() to take data as uint8 *, not char *.Michael Adam2010-05-251-4/+4
|
* s3:registry: fix data_p arg of regval_compose to be uint8 * instead of char *Michael Adam2010-05-251-1/+1
|
* s3:registry: extract the reg_util prototypes into their own header.Michael Adam2010-05-257-0/+35
| | | | And use them only where needed.
* s3:registry: extract the reg_util_legacy prototypes into their own header.Michael Adam2010-05-252-0/+46
| | | | And use them only where necessary.
* s3:registry: extract the reg_cachehook prototypes into their own header.Michael Adam2010-05-256-0/+34
| | | | And use them only where necessary.
* s3:registry: add C to reg_cachehook, confessing considerable changes in 2008Michael Adam2010-05-251-0/+1
|
* s3: registry: fix query empty valuenamesGregor Beck2010-05-211-1/+1
| | | | | | | | Remove a check introduced with commit 80c2446321c519797a57b8006942a983f8481d79 wich causes queries for values with empty name to fail. Empty valuenames are used for the so called default value of a key. Signed-off-by: Michael Adam <obnox@samba.org>
* s3-secdesc: use SD_REVISION from security.idl.Günther Deschner2010-05-181-1/+1
| | | | Guenther
* s3-secdesc: remove "typedef struct security_descriptor SEC_DESC".Günther Deschner2010-05-183-7/+7
| | | | Guenther
* s3-secdesc: remove "typedef struct security_acl SEC_ACL".Günther Deschner2010-05-181-1/+1
| | | | Guenther
* s3-secdesc: remove "typedef struct security_ace SEC_ACE".Günther Deschner2010-05-181-1/+1
| | | | Guenther
* s3: Remove use of iconv_convenience.Jelmer Vernooij2010-05-186-16/+16
|