diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-12-11 09:07:45 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-12-11 09:07:45 +0000 |
commit | fcc4efd1ea637c810eed8444080b87d7f92c837a (patch) | |
tree | 9f72b2b7b5780acc182e84532a54ae6dc26afb3a /source4/librpc/rpc | |
parent | e5ed18db65f33ef0b0151fc34b02e049b14d1ecd (diff) | |
download | samba-fcc4efd1ea637c810eed8444080b87d7f92c837a.tar.gz samba-fcc4efd1ea637c810eed8444080b87d7f92c837a.tar.bz2 samba-fcc4efd1ea637c810eed8444080b87d7f92c837a.zip |
the next step in the dcerpc server code. Added the link between the
IPC IO routines and the dcerpc endpoint servers.
(This used to be commit 4929c53bc8dddda8a763fdfbcf81a79776d01113)
Diffstat (limited to 'source4/librpc/rpc')
-rw-r--r-- | source4/librpc/rpc/dcerpc_smb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/librpc/rpc/dcerpc_smb.c b/source4/librpc/rpc/dcerpc_smb.c index 8a7a5ca68d..9acae00249 100644 --- a/source4/librpc/rpc/dcerpc_smb.c +++ b/source4/librpc/rpc/dcerpc_smb.c @@ -309,7 +309,7 @@ NTSTATUS dcerpc_pipe_open_smb(struct dcerpc_pipe **p, union smb_open io; TALLOC_CTX *mem_ctx; - asprintf(&name, "\\pipe\\%s", pipe_name); + asprintf(&name, "\\%s", pipe_name); if (!name) { return NT_STATUS_NO_MEMORY; } |