diff options
Diffstat (limited to 'source4/include/registry.h')
-rw-r--r-- | source4/include/registry.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/source4/include/registry.h b/source4/include/registry.h index 3e38faa772..b399869091 100644 --- a/source4/include/registry.h +++ b/source4/include/registry.h @@ -111,7 +111,6 @@ struct hive_operations { /* Implement this one */ WERROR (*open_hive) (struct registry_hive *, struct registry_key **); - WERROR (*close_hive) (struct registry_hive *); /* Or this one */ WERROR (*open_key) (TALLOC_CTX *, struct registry_key *, const char *name, struct registry_key **); @@ -148,9 +147,9 @@ struct hive_operations { struct registry_hive { const struct hive_operations *functions; - char *location; - void *backend_data; struct registry_key *root; + void *backend_data; + const char *location; struct registry_context *reg_ctx; }; |