diff options
| author | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-03-21 22:02:19 +0100 |
|---|---|---|
| committer | Matthias Dieter Wallnöfer <mwallnoefer@yahoo.de> | 2010-03-21 22:19:12 +0100 |
| commit | b7f129f5c4686ac22940a09f306c813ce4212aef (patch) | |
| tree | b4d4da7ff224faa0c799ce42a2dee4ddca8d1430 /source4/lib | |
| parent | ea621efee79721afff8238c94ee8c95045820d0b (diff) | |
s4:registry - "LDB backend" - make the key argument "const" of ldb_get_default_value
Diffstat (limited to 'source4/lib')
| -rw-r--r-- | source4/lib/registry/ldb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/lib/registry/ldb.c b/source4/lib/registry/ldb.c index dd94cf24ef..c2acfda16a 100644 --- a/source4/lib/registry/ldb.c +++ b/source4/lib/registry/ldb.c @@ -486,7 +486,8 @@ static WERROR ldb_get_subkey_by_id(TALLOC_CTX *mem_ctx, return WERR_OK; } -static WERROR ldb_get_default_value(TALLOC_CTX *mem_ctx, struct hive_key *k, +static WERROR ldb_get_default_value(TALLOC_CTX *mem_ctx, + const struct hive_key *k, const char **name, uint32_t *data_type, DATA_BLOB *data) { |
