diff options
author | Michael Adam <obnox@samba.org> | 2008-04-13 00:54:44 +0200 |
---|---|---|
committer | Michael Adam <obnox@samba.org> | 2008-04-13 01:43:42 +0200 |
commit | 413c2e9b0aed25ef49b4344c1aec145d0e45a51e (patch) | |
tree | 99fdbd0329245d4e73b5f3e3ae3981c8d0819e01 /source3/include | |
parent | a75421b0190763e5e482db215d8b1e6052bdcc19 (diff) | |
download | samba-413c2e9b0aed25ef49b4344c1aec145d0e45a51e.tar.gz samba-413c2e9b0aed25ef49b4344c1aec145d0e45a51e.tar.bz2 samba-413c2e9b0aed25ef49b4344c1aec145d0e45a51e.zip |
registry: remove the REGISTRY_HOOKS layer from the reghook cache.
There is no need to save the keyname again, we only need to
get the REGISTRY_OPS out of the pathtree.
Furthermore, this makes life easier, since we can now pass
in keynames as temporarily allocated strings.
Michael
(This used to be commit 2f9ee2f782c77ed99669af5ac2ba40cb0978f0da)
Diffstat (limited to 'source3/include')
-rw-r--r-- | source3/include/reg_objects.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/include/reg_objects.h b/source3/include/reg_objects.h index 1d0d0d4996..d9159dd464 100644 --- a/source3/include/reg_objects.h +++ b/source3/include/reg_objects.h @@ -159,7 +159,7 @@ typedef struct _RegistryKey { uint32 type; char *name; /* full name of registry key */ uint32 access_granted; - REGISTRY_HOOK *hook; + REGISTRY_OPS *ops; } REGISTRY_KEY; struct registry_key { |