diff options
author | Kamen Mazdrashki <kamenim@samba.org> | 2010-05-28 05:06:55 +0300 |
---|---|---|
committer | Kamen Mazdrashki <kamenim@samba.org> | 2010-05-28 22:30:08 +0300 |
commit | 1118c7b0e4d311becfcc0d6e3c53405649526a2c (patch) | |
tree | 2ab22e89312beaf926daddaf4e972fab493c2762 | |
parent | 8e3a433f93618d6cadc58c19b54b9255acccec6e (diff) | |
download | samba-1118c7b0e4d311becfcc0d6e3c53405649526a2c.tar.gz samba-1118c7b0e4d311becfcc0d6e3c53405649526a2c.tar.xz samba-1118c7b0e4d311becfcc0d6e3c53405649526a2c.zip |
s4/test: change prototype for test_opendomain()
- name changed to test_domain_open to be more alike athore functions
in utils.c file
- output parameters moved to the end param list definition just
after mem_ctx so it is somehow more clear those params are OUT
-rw-r--r-- | source4/torture/libnet/groupinfo.c | 2 | ||||
-rw-r--r-- | source4/torture/libnet/groupman.c | 2 | ||||
-rw-r--r-- | source4/torture/libnet/userinfo.c | 4 | ||||
-rw-r--r-- | source4/torture/libnet/userman.c | 8 | ||||
-rw-r--r-- | source4/torture/libnet/utils.c | 4 | ||||
-rw-r--r-- | source4/torture/libnet/utils.h | 7 |
6 files changed, 14 insertions, 13 deletions
diff --git a/source4/torture/libnet/groupinfo.c b/source4/torture/libnet/groupinfo.c index affd1e5f964..01f2f9e692d 100644 --- a/source4/torture/libnet/groupinfo.c +++ b/source4/torture/libnet/groupinfo.c @@ -99,7 +99,7 @@ bool torture_groupinfo(struct torture_context *torture) /* * Testing synchronous version */ - if (!test_opendomain(torture, b, mem_ctx, &h, &name, &sid)) { + if (!test_domain_open(torture, b, &name, mem_ctx, &h, &sid)) { ret = false; goto done; } diff --git a/source4/torture/libnet/groupman.c b/source4/torture/libnet/groupman.c index 7788ee85c37..f44793ac822 100644 --- a/source4/torture/libnet/groupman.c +++ b/source4/torture/libnet/groupman.c @@ -72,7 +72,7 @@ bool torture_groupadd(struct torture_context *torture) b = p->binding_handle; domain_name.string = lp_workgroup(torture->lp_ctx); - if (!test_opendomain(torture, b, mem_ctx, &h, &domain_name, &sid)) { + if (!test_domain_open(torture, b, &domain_name, mem_ctx, &h, &sid)) { ret = false; goto done; } diff --git a/source4/torture/libnet/userinfo.c b/source4/torture/libnet/userinfo.c index d6ea609a439..04a9240eef0 100644 --- a/source4/torture/libnet/userinfo.c +++ b/source4/torture/libnet/userinfo.c @@ -138,7 +138,7 @@ bool torture_userinfo(struct torture_context *torture) /* * Testing synchronous version */ - if (!test_opendomain(torture, b, mem_ctx, &h, &name, &sid)) { + if (!test_domain_open(torture, b, &name, mem_ctx, &h, &sid)) { ret = false; goto done; } @@ -161,7 +161,7 @@ bool torture_userinfo(struct torture_context *torture) /* * Testing asynchronous version and monitor messages */ - if (!test_opendomain(torture, b, mem_ctx, &h, &name, &sid)) { + if (!test_domain_open(torture, b, &name, mem_ctx, &h, &sid)) { ret = false; goto done; } diff --git a/source4/torture/libnet/userman.c b/source4/torture/libnet/userman.c index b1699cf4e70..98365d3bff7 100644 --- a/source4/torture/libnet/userman.c +++ b/source4/torture/libnet/userman.c @@ -326,7 +326,7 @@ bool torture_useradd(struct torture_context *torture) b = p->binding_handle; domain_name.string = lp_workgroup(torture->lp_ctx); - if (!test_opendomain(torture, b, mem_ctx, &h, &domain_name, &sid)) { + if (!test_domain_open(torture, b, &domain_name, mem_ctx, &h, &sid)) { ret = false; goto done; } @@ -341,7 +341,7 @@ bool torture_useradd(struct torture_context *torture) goto done; } - if (!test_opendomain(torture, b, mem_ctx, &h, &domain_name, &sid)) { + if (!test_domain_open(torture, b, &domain_name, mem_ctx, &h, &sid)) { ret = false; goto done; } @@ -387,7 +387,7 @@ bool torture_userdel(struct torture_context *torture) b = p->binding_handle; domain_name.string = lp_workgroup(torture->lp_ctx); - if (!test_opendomain(torture, b, mem_ctx, &h, &domain_name, &sid)) { + if (!test_domain_open(torture, b, &domain_name, mem_ctx, &h, &sid)) { ret = false; goto done; } @@ -434,7 +434,7 @@ bool torture_usermod(struct torture_context *torture) domain_name.string = lp_workgroup(torture->lp_ctx); name = talloc_strdup(mem_ctx, TEST_USERNAME); - if (!test_opendomain(torture, b, mem_ctx, &h, &domain_name, &sid)) { + if (!test_domain_open(torture, b, &domain_name, mem_ctx, &h, &sid)) { ret = false; goto done; } diff --git a/source4/torture/libnet/utils.c b/source4/torture/libnet/utils.c index 27dae51194a..0bd8a7c0dca 100644 --- a/source4/torture/libnet/utils.c +++ b/source4/torture/libnet/utils.c @@ -35,11 +35,11 @@ * @param _dom_sid [out] If NULL, Domain SID won't be returned * @return */ -bool test_opendomain(struct torture_context *tctx, +bool test_domain_open(struct torture_context *tctx, struct dcerpc_binding_handle *b, + struct lsa_String *domname, TALLOC_CTX *mem_ctx, struct policy_handle *_domain_handle, - struct lsa_String *domname, struct dom_sid2 *_dom_sid) { struct policy_handle connect_handle; diff --git a/source4/torture/libnet/utils.h b/source4/torture/libnet/utils.h index 04ea3e2febb..26350e3012f 100644 --- a/source4/torture/libnet/utils.h +++ b/source4/torture/libnet/utils.h @@ -19,11 +19,12 @@ */ -bool test_opendomain(struct torture_context *tctx, +bool test_domain_open(struct torture_context *tctx, struct dcerpc_binding_handle *b, + struct lsa_String *domname, TALLOC_CTX *mem_ctx, - struct policy_handle *handle, struct lsa_String *domname, - struct dom_sid2 *sid); + struct policy_handle *_domain_handle, + struct dom_sid2 *_dom_sid); bool test_user_create(struct torture_context *tctx, struct dcerpc_binding_handle *b, |