diff options
author | Günther Deschner <gd@samba.org> | 2008-10-29 14:01:04 +0100 |
---|---|---|
committer | Günther Deschner <gd@samba.org> | 2008-10-31 02:44:30 +0100 |
commit | 9fd82703d17b4dc524d2c7689438b92738c63d23 (patch) | |
tree | 50d797ea83eba5c754955d07566c976005cefccf /source4/torture | |
parent | f61ce2fe41eebef20d3bba471e625d835555d5d8 (diff) | |
download | samba-9fd82703d17b4dc524d2c7689438b92738c63d23.tar.gz samba-9fd82703d17b4dc524d2c7689438b92738c63d23.tar.bz2 samba-9fd82703d17b4dc524d2c7689438b92738c63d23.zip |
s4-srvsvc: merge srvsvc_NetRemoteTOD from s3 idl.
Guenther
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/rpc/srvsvc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/source4/torture/rpc/srvsvc.c b/source4/torture/rpc/srvsvc.c index 9b475ab826..4ddab75883 100644 --- a/source4/torture/rpc/srvsvc.c +++ b/source4/torture/rpc/srvsvc.c @@ -851,10 +851,11 @@ static bool test_NetRemoteTOD(struct torture_context *tctx, { NTSTATUS status; struct srvsvc_NetRemoteTOD r; + struct srvsvc_NetRemoteTODInfo *info = NULL; r.in.server_unc = talloc_asprintf(tctx,"\\\\%s",dcerpc_server_name(p)); + r.out.info = &info; - ZERO_STRUCT(r.out); torture_comment(tctx, "testing NetRemoteTOD\n"); status = dcerpc_srvsvc_NetRemoteTOD(p, tctx, &r); torture_assert_ntstatus_ok(tctx, status, "NetRemoteTOD failed"); |