diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2004-10-28 23:06:12 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 13:04:57 -0500 |
commit | 479bf22c813501f040adf7b6267b961748baa63f (patch) | |
tree | de1bbae68ca012671b2680ba02c973c4a9f71cc3 /source4/torture/rpc | |
parent | 858f1763229a8da808a7473f565382a4b2924917 (diff) | |
download | samba-479bf22c813501f040adf7b6267b961748baa63f.tar.gz samba-479bf22c813501f040adf7b6267b961748baa63f.tar.bz2 samba-479bf22c813501f040adf7b6267b961748baa63f.zip |
r3340: Various fixes in the registry code. Implement the EnumKey call
in the server.
(This used to be commit da65a248c292a90342e1394ee4132ef2c7afd3c8)
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r-- | source4/torture/rpc/winreg.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/source4/torture/rpc/winreg.c b/source4/torture/rpc/winreg.c index 3fdb546a09..1ca5768622 100644 --- a/source4/torture/rpc/winreg.c +++ b/source4/torture/rpc/winreg.c @@ -51,6 +51,11 @@ static BOOL test_GetVersion(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, return False; } + if (!W_ERROR_IS_OK(r.out.result)) { + printf("GetVersion failed - %s\n", win_errstr(r.out.result)); + return False; + } + return True; } @@ -106,6 +111,11 @@ static BOOL test_CloseKey(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, return False; } + if (!W_ERROR_IS_OK(r.out.result)) { + printf("CloseKey failed - %s\n", win_errstr(r.out.result)); + return False; + } + return True; } @@ -228,6 +238,8 @@ static BOOL test_EnumKey(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, struct winreg_Time tm; NTSTATUS status; + printf("Testing EnumKey\n\n"); + r.in.handle = handle; r.in.enum_index = 0; r.in.key_name_len = r.out.key_name_len = 0; |