diff options
author | Günther Deschner <gd@samba.org> | 2007-10-25 11:26:02 +0200 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2007-12-21 05:43:32 +0100 |
commit | cfd09eed406704e51f40010dc0de664809def4cc (patch) | |
tree | 9d1f70a6def8988c3bcea52bb73b70a82541273f /source4/torture | |
parent | ade07a34d9e717dff9b3775c3039e66ec2dfe69d (diff) | |
download | samba-cfd09eed406704e51f40010dc0de664809def4cc.tar.gz samba-cfd09eed406704e51f40010dc0de664809def4cc.tar.bz2 samba-cfd09eed406704e51f40010dc0de664809def4cc.zip |
r25731: Document winreg_NotifyChangeKeyValue's notify flags.
Guenther
(This used to be commit 4468b1cc49bd4a92c08aeb76419abfe00791b2c2)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/winreg.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/source4/torture/rpc/winreg.c b/source4/torture/rpc/winreg.c index 4b00c03260..4c765f72a2 100644 --- a/source4/torture/rpc/winreg.c +++ b/source4/torture/rpc/winreg.c @@ -78,7 +78,7 @@ static bool test_NotifyChangeKeyValue(struct dcerpc_pipe *p, struct winreg_NotifyChangeKeyValue r; r.in.handle = handle; - r.in.watch_subtree = 1; + r.in.watch_subtree = true; r.in.notify_filter = 0; r.in.unknown = r.in.unknown2 = 0; init_winreg_String(&r.in.string1, NULL); @@ -90,7 +90,8 @@ static bool test_NotifyChangeKeyValue(struct dcerpc_pipe *p, if (!W_ERROR_IS_OK(r.out.result)) { torture_comment(tctx, - "NotifyChangeKeyValue failed - %s - not considering\n", win_errstr(r.out.result)); + "NotifyChangeKeyValue failed - %s - not considering\n", + win_errstr(r.out.result)); return true; } |