diff options
author | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-08-27 19:02:49 +0200 |
---|---|---|
committer | Matthias Dieter Wallnöfer <mdw@samba.org> | 2010-08-27 19:20:21 +0200 |
commit | ef334b95faaa8b8d97ff091299c454dfc8fd390c (patch) | |
tree | 633b48515dfe5c48d397a836806f7443be3ca6c0 /source4/torture | |
parent | e736ace470cec34fe51ee0a7b03981ab9b16d6cd (diff) | |
download | samba-ef334b95faaa8b8d97ff091299c454dfc8fd390c.tar.gz samba-ef334b95faaa8b8d97ff091299c454dfc8fd390c.tar.bz2 samba-ef334b95faaa8b8d97ff091299c454dfc8fd390c.zip |
s4:torture/rpc/winreg.c - set "error_message" to NULL in "test_HKLM_wellknown"
Hopefully this fixes the build on Solaris 8.
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/winreg.c | 27 |
1 files changed, 18 insertions, 9 deletions
diff --git a/source4/torture/rpc/winreg.c b/source4/torture/rpc/winreg.c index c369389311..9ee68c6565 100644 --- a/source4/torture/rpc/winreg.c +++ b/source4/torture/rpc/winreg.c @@ -2422,55 +2422,64 @@ static bool test_HKLM_wellknown(struct torture_context *tctx, .values[1] = NULL, .values[2] = NULL, .num_values = 1, - .existing_value = true + .existing_value = true, + .error_message = NULL },{ .values[0] = VALUE_SYSTEM_ROOT, .values[1] = NULL, .values[2] = NULL, .num_values = 1, - .existing_value = true + .existing_value = true, + .error_message = NULL },{ .values[0] = VALUE_CURRENT_VERSION, .values[1] = VALUE_SYSTEM_ROOT, .values[2] = NULL, .num_values = 2, - .existing_value = true + .existing_value = true, + .error_message = NULL },{ .values[0] = VALUE_CURRENT_VERSION, .values[1] = VALUE_SYSTEM_ROOT, .values[2] = VALUE_CURRENT_VERSION, .num_values = 3, - .existing_value = true + .existing_value = true, + .error_message = NULL },{ .values[0] = VALUE_CURRENT_VERSION, .values[1] = NULL, .values[2] = VALUE_SYSTEM_ROOT, .num_values = 3, - .existing_value = false + .existing_value = false, + .error_message = NULL },{ .values[0] = VALUE_CURRENT_VERSION, .values[1] = "", .values[2] = VALUE_SYSTEM_ROOT, .num_values = 3, - .existing_value = false + .existing_value = false, + .error_message = NULL },{ .values[0] = "IDoNotExist", .values[1] = NULL, .values[2] = NULL, .num_values = 1, - .existing_value = false + .existing_value = false, + .error_message = NULL },{ .values[0] = "IDoNotExist", .values[1] = VALUE_CURRENT_VERSION, .values[2] = NULL, .num_values = 2, - .existing_value = false + .existing_value = false, + .error_message = NULL },{ .values[0] = VALUE_CURRENT_VERSION, .values[1] = "IDoNotExist", .values[2] = NULL, .num_values = 2, - .existing_value = false + .existing_value = false, + .error_message = NULL } }; |