summaryrefslogtreecommitdiff
path: root/source3/librpc/tools
diff options
context:
space:
mode:
authorStefan Metzmacher <metze@samba.org>2007-08-18 10:33:44 +0000
committerGerald (Jerry) Carter <jerry@samba.org>2007-10-10 12:29:55 -0500
commit68821746d8f79e7480b936d215875eb17af7eccf (patch)
treef0ddf8dffc2d83d4ab9db8bfb48ee4cbd0ca5e55 /source3/librpc/tools
parentb018c9b9a22fa44b924a64f7a3ee8c0e38f614e2 (diff)
downloadsamba-68821746d8f79e7480b936d215875eb17af7eccf.tar.gz
samba-68821746d8f79e7480b936d215875eb17af7eccf.tar.bz2
samba-68821746d8f79e7480b936d215875eb17af7eccf.zip
r24538: merge from SAMBA_4_0:
rename struct dcerpc_interface_call -> struct ndr_interface_call and move it to librpc/ndr/libndr.h metze (This used to be commit 24e096b3659c3070a1ce029174fba51ae59e89ad)
Diffstat (limited to 'source3/librpc/tools')
-rw-r--r--source3/librpc/tools/ndrdump.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source3/librpc/tools/ndrdump.c b/source3/librpc/tools/ndrdump.c
index ab7853fd41..cbc97cab98 100644
--- a/source3/librpc/tools/ndrdump.c
+++ b/source3/librpc/tools/ndrdump.c
@@ -27,7 +27,7 @@
#include "librpc/rpc/dcerpc_table.h"
#endif
-static const struct dcerpc_interface_call *find_function(
+static const struct ndr_interface_call *find_function(
const struct dcerpc_interface_table *p,
const char *function)
{
@@ -133,7 +133,7 @@ static const struct dcerpc_interface_table *load_iface_from_plugin(const char *p
int main(int argc, const char *argv[])
{
const struct dcerpc_interface_table *p = NULL;
- const struct dcerpc_interface_call *f;
+ const struct ndr_interface_call *f;
const char *pipe_name, *function, *inout, *filename;
uint8_t *data;
size_t size;