summaryrefslogtreecommitdiff
path: root/source3/rpc_server/srv_pipe.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2000-04-04 00:35:34 +0000
committerTim Potter <tpot@samba.org>2000-04-04 00:35:34 +0000
commitba0a53b52ca934389268b65ec0d9e7336ae85d4f (patch)
tree672e9ea9e01b5c3821edd03dd8d2eb91f6640c3d /source3/rpc_server/srv_pipe.c
parentd6981c2d3a7d2e24f2536e057a86871717787b1c (diff)
downloadsamba-ba0a53b52ca934389268b65ec0d9e7336ae85d4f.tar.gz
samba-ba0a53b52ca934389268b65ec0d9e7336ae85d4f.tar.bz2
samba-ba0a53b52ca934389268b65ec0d9e7336ae85d4f.zip
Removed unused parameter vuid from rpc_server api_* calls. For the very few
functions that need to access the vuid, it can be obtained from the current_user global. Did some whitespace cleanup. (This used to be commit 738b307bd7053ede369431da7b1349befaa523d9)
Diffstat (limited to 'source3/rpc_server/srv_pipe.c')
-rw-r--r--source3/rpc_server/srv_pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_server/srv_pipe.c b/source3/rpc_server/srv_pipe.c
index 9a17862bd5..ebb38154d3 100644
--- a/source3/rpc_server/srv_pipe.c
+++ b/source3/rpc_server/srv_pipe.c
@@ -1099,7 +1099,7 @@ BOOL api_rpcTNP(pipes_struct *p, char *rpc_name, struct api_struct *api_rpc_cmds
}
/* do the actual command */
- if(!api_rpc_cmds[fn_num].fn(p->vuid, rpc_in, &p->out_data.rdata)) {
+ if(!api_rpc_cmds[fn_num].fn(rpc_in, &p->out_data.rdata)) {
DEBUG(0,("api_rpcTNP: %s: failed.\n", rpc_name));
prs_mem_free(&p->out_data.rdata);
return False;