From 2f3511c56e8a508c678f90e8fbd16116685b8a2b Mon Sep 17 00:00:00 2001 From: Stefan Metzmacher Date: Sun, 19 Aug 2007 21:23:28 +0000 Subject: r24558: merge from SAMBA_4_0: rename 'dcerpc_table_' -> 'ndr_table_' metze (This used to be commit 4e5908cd596f97d3bb73bd9c0bf3d360944f7810) --- source3/librpc/tools/ndrdump.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/librpc/tools/ndrdump.c') diff --git a/source3/librpc/tools/ndrdump.c b/source3/librpc/tools/ndrdump.c index d120e33c07..01ae2253ff 100644 --- a/source3/librpc/tools/ndrdump.c +++ b/source3/librpc/tools/ndrdump.c @@ -116,7 +116,7 @@ static const struct ndr_interface_table *load_iface_from_plugin(const char *plug return NULL; } - symbol = talloc_asprintf(NULL, "dcerpc_table_%s", pipe_name); + symbol = talloc_asprintf(NULL, "ndr_table_%s", pipe_name); p = (const struct ndr_interface_table *)dlsym(handle, symbol); if (!p) { @@ -164,7 +164,7 @@ static const struct ndr_interface_table *load_iface_from_plugin(const char *plug }; #if (_SAMBA_BUILD_ >= 4) - dcerpc_table_init(); + ndr_table_init(); #else /* Initialise samba stuff */ load_case_tables(); -- cgit