diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-23 01:53:54 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-23 01:53:54 +0000 |
commit | d47d14f2ffc7a6d2cc306530b777f364767998b3 (patch) | |
tree | 5ff4972c9bea1a5104a2aac2986f2331db96d101 /source4/torture/rpc/winreg.c | |
parent | 7ab05c2ffa87c962a38a9ac90fa5705d93516a57 (diff) | |
download | samba-d47d14f2ffc7a6d2cc306530b777f364767998b3.tar.gz samba-d47d14f2ffc7a6d2cc306530b777f364767998b3.tar.bz2 samba-d47d14f2ffc7a6d2cc306530b777f364767998b3.zip |
reduced the number of magic types we need in mkproto.pl
In general I prefer "struct foo" to just "foo" for most
structures. There are exceptions.
(This used to be commit 04eb12b56c653f98801ab29411f47564ab32fa58)
Diffstat (limited to 'source4/torture/rpc/winreg.c')
-rw-r--r-- | source4/torture/rpc/winreg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/torture/rpc/winreg.c b/source4/torture/rpc/winreg.c index 3b88b032b7..65db147e21 100644 --- a/source4/torture/rpc/winreg.c +++ b/source4/torture/rpc/winreg.c @@ -173,7 +173,7 @@ static BOOL test_EnumKey(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, keyname.unknown = 0x0000020a; init_winreg_String(&keyname.key_name, NULL); init_winreg_String(&classname, NULL); - r.in.name = &keyname; + r.in.in_name = &keyname; r.in.class = &classname; tm.low = tm.high = 0x7fffffff; r.in.last_changed_time = &tm; |