summaryrefslogtreecommitdiff
path: root/source3/python
diff options
context:
space:
mode:
authorJim McDonough <jmcd@samba.org>2002-10-18 17:29:20 +0000
committerJim McDonough <jmcd@samba.org>2002-10-18 17:29:20 +0000
commitfb3d215b396d9c3a1aecf9335a5520bdd604117f (patch)
tree1b929588dd128eed3d45a654f3345c38b77f6b47 /source3/python
parent9cd6f05f2b78720a22dfd80d15134a32831cbc2b (diff)
downloadsamba-fb3d215b396d9c3a1aecf9335a5520bdd604117f.tar.gz
samba-fb3d215b396d9c3a1aecf9335a5520bdd604117f.tar.bz2
samba-fb3d215b396d9c3a1aecf9335a5520bdd604117f.zip
Add extra parm to cli_full_connection call. Tim, you should probably look at this.
(This used to be commit a9f632ed5d3d033849c25efac419b21e830c5069)
Diffstat (limited to 'source3/python')
-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 8742cfa363..364271d57c 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");