summaryrefslogtreecommitdiff
path: root/source3/python/py_common.c
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2002-10-18 17:30:29 +0000
committerJim McDonough <jmcd@samba.org>2002-10-18 17:30:29 +0000
commit555bc82dea577738b75c5beb8ddbd462d0348d15 (patch)
tree60c5d1b395eea7ba22e2767102e57786ac69a94f /source3/python/py_common.c
parentd7d60ddc219383bf1b312c30c2afaed06ea92a2d (diff)
downloadsamba-555bc82dea577738b75c5beb8ddbd462d0348d15.tar.gz
samba-555bc82dea577738b75c5beb8ddbd462d0348d15.tar.bz2
samba-555bc82dea577738b75c5beb8ddbd462d0348d15.zip
Add extra parm to cli_full_connection. Tim, you should probably take a look at this.
(This used to be commit 42f04bbbb220843dc545ae67417243797f39f429)
Diffstat (limited to 'source3/python/py_common.c')
-rw-r--r--source3/python/py_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/python/py_common.c b/source3/python/py_common.c
index e21858e072..d15df234d1 100644
--- a/source3/python/py_common.c
+++ b/source3/python/py_common.c
@@ -233,7 +233,7 @@ struct cli_state *open_pipe_creds(char *server, PyObject *creds,
result = cli_full_connection(
&cli, NULL, server, NULL, 0, "IPC$", "IPC",
- username, domain, password, 0);
+ username, domain, password, 0, NULL);
if (!NT_STATUS_IS_OK(result)) {
*errstr = strdup("error connecting to IPC$ pipe");