diff options
author | Andrew Tridgell <tridge@samba.org> | 2003-11-14 13:16:34 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2003-11-14 13:16:34 +0000 |
commit | f147a707955d3c57ecd0ecc7e19307adb2aed02b (patch) | |
tree | c65c118bf33227cd2d81bd7fcda758cca1a6263a /source4/librpc/rpc | |
parent | 492282316795af676b249fcdee51759866cc8129 (diff) | |
download | samba-f147a707955d3c57ecd0ecc7e19307adb2aed02b.tar.gz samba-f147a707955d3c57ecd0ecc7e19307adb2aed02b.tar.bz2 samba-f147a707955d3c57ecd0ecc7e19307adb2aed02b.zip |
added the dfs_GetInfo all - all levels
(This used to be commit 638eae6bae76eba5494e75fb7f3da8b1c205f892)
Diffstat (limited to 'source4/librpc/rpc')
-rw-r--r-- | source4/librpc/rpc/rpc_dfs.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/source4/librpc/rpc/rpc_dfs.c b/source4/librpc/rpc/rpc_dfs.c index 1e827bda07..c722530eeb 100644 --- a/source4/librpc/rpc/rpc_dfs.c +++ b/source4/librpc/rpc/rpc_dfs.c @@ -53,12 +53,12 @@ NTSTATUS dcerpc_dfs_UNKNOWN3(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, struct return r->out.result; } -NTSTATUS dcerpc_dfs_Info(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, struct dfs_Info *r) +NTSTATUS dcerpc_dfs_GetInfo(struct dcerpc_pipe *p, TALLOC_CTX *mem_ctx, struct dfs_GetInfo *r) { NTSTATUS status; - status = dcerpc_ndr_request(p, DCERPC_DFS_INFO, mem_ctx, - (ndr_push_fn_t) ndr_push_dfs_Info, - (ndr_pull_fn_t) ndr_pull_dfs_Info, + status = dcerpc_ndr_request(p, DCERPC_DFS_GETINFO, mem_ctx, + (ndr_push_fn_t) ndr_push_dfs_GetInfo, + (ndr_pull_fn_t) ndr_pull_dfs_GetInfo, r); if (!NT_STATUS_IS_OK(status)) { return status; |