From 06fe5d6cd92bbf87f80c3df305d136760d0f91d8 Mon Sep 17 00:00:00 2001 From: Jelmer Vernooij Date: Mon, 18 Oct 2004 16:25:36 +0000 Subject: r3047: Always include a \ again before the pipe name we're opening. Without a backslash works, but is not like Windows does it. (This used to be commit f6deb3d065e1a88f92bcb8a4a138453650c97b0b) --- source4/librpc/rpc/dcerpc_util.c | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'source4/librpc/rpc') diff --git a/source4/librpc/rpc/dcerpc_util.c b/source4/librpc/rpc/dcerpc_util.c index 87a9073a73..ccb7f126ea 100644 --- a/source4/librpc/rpc/dcerpc_util.c +++ b/source4/librpc/rpc/dcerpc_util.c @@ -456,6 +456,10 @@ static NTSTATUS dcerpc_pipe_connect_ncacn_np(struct dcerpc_pipe **p, !strncasecmp(pipe_name, "\\pipe\\", 6)) { pipe_name+=6; } + + if (pipe_name[0] != '\\') { + pipe_name = talloc_asprintf(mem_ctx, "\\%s", pipe_name); + } if (!username || !username[0]) { status = smbcli_full_connection(NULL, &cli, lp_netbios_name(), -- cgit