diff options
author | Matthieu Patou <mat@matws.net> | 2010-05-10 01:40:31 +0400 |
---|---|---|
committer | Stefan Metzmacher <metze@samba.org> | 2010-05-18 15:31:12 +0200 |
commit | 0e4e39c7f51a6fe95485710454b5ced1a6ef7a51 (patch) | |
tree | af2bebb186eeeac39d34f4a194a4eb9d0727cfcd /source4/torture/ndr | |
parent | 970cbad79ab4b6cad73dd75daae4f896dde92f38 (diff) | |
download | samba-0e4e39c7f51a6fe95485710454b5ced1a6ef7a51.tar.gz samba-0e4e39c7f51a6fe95485710454b5ced1a6ef7a51.tar.bz2 samba-0e4e39c7f51a6fe95485710454b5ced1a6ef7a51.zip |
s4 torture test: Adapt ndr-dfsblobs torture test to new idl
Signed-off-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source4/torture/ndr')
-rw-r--r-- | source4/torture/ndr/dfsblob.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/source4/torture/ndr/dfsblob.c b/source4/torture/ndr/dfsblob.c index 353f9f5af3..96d3407815 100644 --- a/source4/torture/ndr/dfsblob.c +++ b/source4/torture/ndr/dfsblob.c @@ -43,8 +43,8 @@ struct torture_suite *ndr_dfsblob_suite(TALLOC_CTX *ctx) { struct torture_suite *suite = torture_suite_create(ctx, "dfsblob"); - torture_suite_add_ndr_pull_fn_test(suite, dfs_GetDFSReferral, dfs_get_ref_in, NDR_IN, NULL); - torture_suite_add_ndr_pull_fn_test(suite, dfs_GetDFSReferral, dfs_get_ref_out, NDR_OUT, NULL); + torture_suite_add_ndr_pull_fn_test(suite, dfs_GetDFSReferral_in, dfs_get_ref_in, NDR_IN, NULL); + torture_suite_add_ndr_pull_fn_test(suite, dfs_referral_resp, dfs_get_ref_out, NDR_BUFFERS|NDR_SCALARS, NULL); return suite; } |