summaryrefslogtreecommitdiff
path: root/source3/librpc/gen_ndr/winreg.h
diff options
context:
space:
mode:
authorVolker Lendecke <vlendec@samba.org>2006-11-27 14:05:28 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:16:09 -0500
commit4a361ffd7f0b62f05e552c6da926881cd1f756a0 (patch)
treeef082a0ef289af6017a146eeb28d7d67eebe103b /source3/librpc/gen_ndr/winreg.h
parent847644bdac520a3cca7f30ffa50c0de3eeedf6d9 (diff)
downloadsamba-4a361ffd7f0b62f05e552c6da926881cd1f756a0.tar.gz
samba-4a361ffd7f0b62f05e552c6da926881cd1f756a0.tar.bz2
samba-4a361ffd7f0b62f05e552c6da926881cd1f756a0.zip
r19918: Convert winreg_CreateKey to use a ref ** instead of a unique *. W2k3 can still
create keys on Samba and vice versa. Jelmer, please check. Thanks, Volker (This used to be commit 1b460d6cdfe0cadd915a5299e6ca9bb359bf0075)
Diffstat (limited to 'source3/librpc/gen_ndr/winreg.h')
-rw-r--r--source3/librpc/gen_ndr/winreg.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/librpc/gen_ndr/winreg.h b/source3/librpc/gen_ndr/winreg.h
index 4703c3dc07..6b028633c2 100644
--- a/source3/librpc/gen_ndr/winreg.h
+++ b/source3/librpc/gen_ndr/winreg.h
@@ -164,12 +164,12 @@ struct winreg_CreateKey {
uint32_t options;
uint32_t access_mask;
struct winreg_SecBuf *secdesc;/* [unique] */
- enum winreg_CreateAction *action_taken;/* [unique] */
+ enum winreg_CreateAction **action_taken;/* [ref] */
} in;
struct {
struct policy_handle *new_handle;/* [ref] */
- enum winreg_CreateAction *action_taken;/* [unique] */
+ enum winreg_CreateAction **action_taken;/* [ref] */
WERROR result;
} out;