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 | 2f9ee2f782c77ed99669af5ac2ba40cb0978f0da (patch) | |
tree | b413ecacfd0e639e16c61222e2b34ab582225a5b /source/script | |
parent | 84608e165e24c68c12d40086f81684ef37f69159 (diff) | |
download | samba-2f9ee2f782c77ed99669af5ac2ba40cb0978f0da.tar.gz samba-2f9ee2f782c77ed99669af5ac2ba40cb0978f0da.tar.xz samba-2f9ee2f782c77ed99669af5ac2ba40cb0978f0da.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
Diffstat (limited to 'source/script')
-rw-r--r-- | source/script/mkproto.awk | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source/script/mkproto.awk b/source/script/mkproto.awk index e9839fe4989..0fcfbb1e197 100644 --- a/source/script/mkproto.awk +++ b/source/script/mkproto.awk @@ -143,7 +143,7 @@ END { gotstart = 1; } - if( $0 ~ /^SAM_ACCT_INFO_NODE|^SMB_ACL_T|^ADS_MODLIST|^PyObject|^SORTED_TREE|^REGISTRY_HOOK|^REGISTRY_VALUE|^REGVAL_CTR|^DEVICEMODE|^PAC_DATA|^NET_USER_INFO_3|^smb_event_id_t/ ) { + if( $0 ~ /^SAM_ACCT_INFO_NODE|^SMB_ACL_T|^ADS_MODLIST|^PyObject|^SORTED_TREE|^REGISTRY_HOOK|^REGISTRY_OPS|^REGISTRY_VALUE|^REGVAL_CTR|^DEVICEMODE|^PAC_DATA|^NET_USER_INFO_3|^smb_event_id_t/ ) { gotstart = 1; } |