summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorGünther Deschner <gd@samba.org>2013-08-08 17:40:22 +0200
committerGünther Deschner <gd@samba.org>2013-09-20 13:07:10 +0200
commita94e278883c58b35d383753e86135ff6a1d14ec7 (patch)
treec6788bd623ea8b8e085ac64c98ee0708ab87e72f /source3/lib
parent21200b12dc14673f9a610c5798635b6052370dbe (diff)
downloadsamba-a94e278883c58b35d383753e86135ff6a1d14ec7.tar.gz
samba-a94e278883c58b35d383753e86135ff6a1d14ec7.tar.bz2
samba-a94e278883c58b35d383753e86135ff6a1d14ec7.zip
s3-rpc: use table->name directly in DEBUG contexts.
Guenther Signed-off-by: Günther Deschner <gd@samba.org> Reviewed-by: Stefan Metzmacher <metze@samba.org>
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/netapi/cm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/lib/netapi/cm.c b/source3/lib/netapi/cm.c
index 1cfdccfd1d..bb5d6b234a 100644
--- a/source3/lib/netapi/cm.c
+++ b/source3/lib/netapi/cm.c
@@ -254,7 +254,7 @@ WERROR libnetapi_open_pipe(struct libnetapi_ctx *ctx,
status = pipe_cm_open(ctx, ipc, table, &result);
if (!NT_STATUS_IS_OK(status)) {
libnetapi_set_error_string(ctx, "failed to open PIPE %s: %s",
- get_pipe_name_from_syntax(talloc_tos(), &table->syntax_id),
+ table->name,
get_friendly_nt_error_msg(status));
return WERR_DEST_NOT_FOUND;
}