diff options
author | Volker Lendecke <vl@samba.org> | 2009-11-08 19:38:09 +0100 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2009-11-08 19:43:47 +0100 |
commit | bb283af16fe3858310d762cb5998909ae3b810de (patch) | |
tree | 1787659360b5405de29cbaaad39bf2a209b436a2 /source3/rpc_client | |
parent | e181b889784e6aed47e2fcc86add736d0b04daf2 (diff) | |
download | samba-bb283af16fe3858310d762cb5998909ae3b810de.tar.gz samba-bb283af16fe3858310d762cb5998909ae3b810de.tar.bz2 samba-bb283af16fe3858310d762cb5998909ae3b810de.zip |
Revert "s3: Do not directly reference the ndr_table_* in rpcclient"
This reverts commit 70c698fd547c4bc19cf77693608bbb34acac40b5.
Diffstat (limited to 'source3/rpc_client')
-rw-r--r-- | source3/rpc_client/cli_pipe.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c index bd7bf325c4..9ff84f8b6d 100644 --- a/source3/rpc_client/cli_pipe.c +++ b/source3/rpc_client/cli_pipe.c @@ -195,20 +195,6 @@ const char *get_pipe_name_from_syntax(TALLOC_CTX *mem_ctx, return result; } -bool ndr_syntax_from_string(const char *s, uint32_t version, - struct ndr_syntax_id *syntax) -{ - NTSTATUS status; - status = GUID_from_string(s, &syntax->uuid); - if (!NT_STATUS_IS_OK(status)) { - DEBUG(10, ("GUID_from_string returned %s\n", - nt_errstr(status))); - return false; - } - syntax->if_version = version; - return true; -} - /******************************************************************** Map internal value to wire value. ********************************************************************/ |