summaryrefslogtreecommitdiff
path: root/source4/librpc/rpc/dcerpc_smb.c
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2003-11-24 12:40:47 +0000
committerAndrew Tridgell <tridge@samba.org>2003-11-24 12:40:47 +0000
commit7befc0648e4366980b7efdf31cc946ea11de5101 (patch)
tree984c165579d04575a11db9077c4da518790ca494 /source4/librpc/rpc/dcerpc_smb.c
parentbbb11d4a0dc02a6125855620e0a59a6b24107e4d (diff)
downloadsamba-7befc0648e4366980b7efdf31cc946ea11de5101.tar.gz
samba-7befc0648e4366980b7efdf31cc946ea11de5101.tar.bz2
samba-7befc0648e4366980b7efdf31cc946ea11de5101.zip
initial implementation of dcerpc over tcp. RPC-EPMAPPER works, now to
add epm_Map calls and support the rest of the pipes (This used to be commit 39add481582609ddb9d0b3bae45fde3226ece481)
Diffstat (limited to 'source4/librpc/rpc/dcerpc_smb.c')
-rw-r--r--source4/librpc/rpc/dcerpc_smb.c7
1 files changed, 4 insertions, 3 deletions
diff --git a/source4/librpc/rpc/dcerpc_smb.c b/source4/librpc/rpc/dcerpc_smb.c
index ba9c0c62a2..6af997275c 100644
--- a/source4/librpc/rpc/dcerpc_smb.c
+++ b/source4/librpc/rpc/dcerpc_smb.c
@@ -1,6 +1,7 @@
/*
Unix SMB/CIFS implementation.
- raw dcerpc operations
+
+ dcerpc over SMB transport
Copyright (C) Tim Potter 2003
Copyright (C) Andrew Tridgell 2003
@@ -348,7 +349,7 @@ NTSTATUS dcerpc_pipe_open_smb(struct dcerpc_pipe **p,
return status;
}
- if (!(*p = dcerpc_pipe_init(tree))) {
+ if (!(*p = dcerpc_pipe_init())) {
return NT_STATUS_NO_MEMORY;
}
@@ -381,5 +382,5 @@ NTSTATUS dcerpc_pipe_open_smb(struct dcerpc_pipe **p,
dcerpc_pipe_close(*p);
}
- return status;
+ return NT_STATUS_OK;
}