summaryrefslogtreecommitdiff
path: root/source3/rpc_client
diff options
context:
space:
mode:
authorAndrew Tridgell <tridge@samba.org>2000-12-04 07:39:22 +0000
committerAndrew Tridgell <tridge@samba.org>2000-12-04 07:39:22 +0000
commitd7a502f5a8f532367bca51b584fd028957df9197 (patch)
tree8406398f619e7ef51408f2bf28c0d71ba9cd49c8 /source3/rpc_client
parent3eee7625b1c497a6f87a2d11710a4d7c4ff58fa1 (diff)
downloadsamba-d7a502f5a8f532367bca51b584fd028957df9197.tar.gz
samba-d7a502f5a8f532367bca51b584fd028957df9197.tar.bz2
samba-d7a502f5a8f532367bca51b584fd028957df9197.zip
fixed a typo
(This used to be commit c9e4dea1cbcf6aa748f5cb10f226345dd2f1adbf)
Diffstat (limited to 'source3/rpc_client')
-rw-r--r--source3/rpc_client/cli_pipe.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/rpc_client/cli_pipe.c b/source3/rpc_client/cli_pipe.c
index 7ca274efc3..0b119de5a1 100644
--- a/source3/rpc_client/cli_pipe.c
+++ b/source3/rpc_client/cli_pipe.c
@@ -1169,7 +1169,7 @@ BOOL cli_nt_session_open(struct cli_state *cli, char *pipe_name)
int fnum;
if (cli->capabilities & CAP_NT_SMBS) {
- if ((fnum = cli_nt_create(cli, &(pipe_name[5], DESIRED_ACCESS_PIPE))) == -1) {
+ if ((fnum = cli_nt_create(cli, &(pipe_name[5]), DESIRED_ACCESS_PIPE)) == -1) {
DEBUG(0,("cli_nt_session_open: cli_nt_create failed on pipe %s to machine %s. Error was %s\n",
&(pipe_name[5]), cli->desthost, cli_errstr(cli)));
return False;