From d8c3428b3bb10075cec3b37adbca54db634d3b00 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Wed, 15 Dec 2004 00:16:54 +0000 Subject: r4209: Fix several smaller bugs Add "predef" and "set" commands in regshell Some of the remote calls from a Windows box work now. (This used to be commit f3e05782804fe4b4942fa966f1b9650c64bc234d) --- source4/include/registry.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source4/include/registry.h') diff --git a/source4/include/registry.h b/source4/include/registry.h index e2f8bc087a..d90e9ccfc1 100644 --- a/source4/include/registry.h +++ b/source4/include/registry.h @@ -122,15 +122,15 @@ struct hive_operations { WERROR (*get_value_by_name) (TALLOC_CTX *, struct registry_key *, const char *name, struct registry_value **); /* Security control */ - WERROR (*key_get_sec_desc) (TALLOC_CTX *, struct registry_key *, SEC_DESC **); - WERROR (*key_set_sec_desc) (struct registry_key *, SEC_DESC *); + WERROR (*key_get_sec_desc) (TALLOC_CTX *, struct registry_key *, struct security_descriptor **); + WERROR (*key_set_sec_desc) (struct registry_key *, struct security_descriptor *); /* Notification */ WERROR (*request_key_change_notify) (struct registry_key *, key_notification_function); WERROR (*request_value_change_notify) (struct registry_value *, value_notification_function); /* Key management */ - WERROR (*add_key)(TALLOC_CTX *, struct registry_key *, const char *name, uint32_t access_mask, SEC_DESC *, struct registry_key **); + WERROR (*add_key)(TALLOC_CTX *, struct registry_key *, const char *name, uint32_t access_mask, struct security_descriptor *, struct registry_key **); WERROR (*del_key)(struct registry_key *, const char *name); WERROR (*flush_key) (struct registry_key *); -- cgit