summaryrefslogtreecommitdiffstats
path: root/source/python/py_common.c
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
commita9f632ed5d3d033849c25efac419b21e830c5069 (patch)
treef4c0bd406f7027690c56e1d41313bd0f6a0d1523 /source/python/py_common.c
parent744615f13f591b334fe85d4285ffbaa11419755c (diff)
downloadsamba-a9f632ed5d3d033849c25efac419b21e830c5069.tar.gz
samba-a9f632ed5d3d033849c25efac419b21e830c5069.tar.xz
samba-a9f632ed5d3d033849c25efac419b21e830c5069.zip
Add extra parm to cli_full_connection call. Tim, you should probably look at this.
Diffstat (limited to 'source/python/py_common.c')
-rw-r--r--source/python/py_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/python/py_common.c b/source/python/py_common.c
index 8742cfa363c..364271d57c4 100644
--- a/source/python/py_common.c
+++ b/source/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");