diff options
author | Stefan Metzmacher <metze@samba.org> | 2009-02-13 13:13:54 +0100 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2009-03-19 16:25:59 +0100 |
commit | c600e8ef42c3cb71c03330782f96bfdf71870e0f (patch) | |
tree | 267fa095670bb2895649cb3a847c496d6e3f2ae1 /source4/torture/rpc | |
parent | b69e72dedac5792d8c191850ea3bd4b3ff976526 (diff) | |
download | samba-c600e8ef42c3cb71c03330782f96bfdf71870e0f.tar.gz samba-c600e8ef42c3cb71c03330782f96bfdf71870e0f.tar.bz2 samba-c600e8ef42c3cb71c03330782f96bfdf71870e0f.zip |
s4:cldap: rewrite the cldap library based on tsocket
metze
Diffstat (limited to 'source4/torture/rpc')
-rw-r--r-- | source4/torture/rpc/dssync.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/source4/torture/rpc/dssync.c b/source4/torture/rpc/dssync.c index 847b32827b..1aaf914ceb 100644 --- a/source4/torture/rpc/dssync.c +++ b/source4/torture/rpc/dssync.c @@ -273,7 +273,12 @@ static bool test_GetInfo(struct torture_context *tctx, struct DsSyncTest *ctx) struct cldap_socket *cldap; struct cldap_netlogon search; - cldap = cldap_socket_init(ctx, tctx->ev, lp_iconv_convenience(tctx->lp_ctx)); + status = cldap_socket_init(ctx, NULL, NULL, NULL, &cldap); + if (!NT_STATUS_IS_OK(status)) { + printf("failed to setup cldap socket - %s\n", + nt_errstr(status)); + return false; + } r.in.bind_handle = &ctx->admin.drsuapi.bind_handle; r.in.level = 1; @@ -311,7 +316,7 @@ static bool test_GetInfo(struct torture_context *tctx, struct DsSyncTest *ctx) search.in.acct_control = -1; search.in.version = NETLOGON_NT_VERSION_5 | NETLOGON_NT_VERSION_5EX; search.in.map_response = true; - status = cldap_netlogon(cldap, ctx, &search); + status = cldap_netlogon(cldap, lp_iconv_convenience(tctx->lp_ctx), ctx, &search); if (!NT_STATUS_IS_OK(status)) { const char *errstr = nt_errstr(status); ctx->site_name = talloc_asprintf(ctx, "%s", "Default-First-Site-Name"); |