diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-28 00:48:05 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-28 00:48:05 +0000 |
commit | df5949efb425668f8e7ae38c0c858bd90529255a (patch) | |
tree | 6fc93659cff35e9a4a9a433d0a7cc4eb5e383f42 /source4/torture | |
parent | abff8aac56b2481de2223bf43ae2098cc7ab2391 (diff) | |
download | samba-df5949efb425668f8e7ae38c0c858bd90529255a.tar.gz samba-df5949efb425668f8e7ae38c0c858bd90529255a.tar.bz2 samba-df5949efb425668f8e7ae38c0c858bd90529255a.zip |
added auto-generation of the IDL interface tables. This makes two less
places that need to be edited when someone adds a new IDL file.
(This used to be commit ccd9ddeed679baa6cbb05ac728b381b50420e00f)
Diffstat (limited to 'source4/torture')
-rw-r--r-- | source4/torture/torture.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/source4/torture/torture.c b/source4/torture/torture.c index 9bc494df7f..0a15620174 100644 --- a/source4/torture/torture.c +++ b/source4/torture/torture.c @@ -165,6 +165,9 @@ static NTSTATUS torture_rpc_tcp(struct dcerpc_pipe **p, /* always do NDR validation in smbtorture */ (*p)->flags |= DCERPC_DEBUG_VALIDATE_BOTH; +#if 0 + status = dcerpc_bind_auth_none(*p, pipe_uuid, pipe_version); +#else /* enable signing on tcp connections */ (*p)->flags |= DCERPC_SIGN; @@ -177,6 +180,7 @@ static NTSTATUS torture_rpc_tcp(struct dcerpc_pipe **p, dcerpc_pipe_close(*p); return status; } +#endif return status; } |