summaryrefslogtreecommitdiffstats
path: root/source
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-07-11 22:19:31 +0000
committerTim Potter <tpot@samba.org>2002-07-11 22:19:31 +0000
commit802f30a1b34888823c1fc80121b3917cb6825119 (patch)
tree6b56a084f7a150e90aa2bf0afb1d234e210355a3 /source
parent66c9cab369e38284c71572bfb3643538e253a451 (diff)
downloadsamba-802f30a1b34888823c1fc80121b3917cb6825119.tar.gz
samba-802f30a1b34888823c1fc80121b3917cb6825119.tar.xz
samba-802f30a1b34888823c1fc80121b3917cb6825119.zip
Compile fix for flags field to cli_full_connection()
Diffstat (limited to 'source')
-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 471a53da844..890422536e0 100644
--- a/source/python/py_common.c
+++ b/source/python/py_common.c
@@ -174,7 +174,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);
+ username, domain, password, 0);
if (!NT_STATUS_IS_OK(result)) {
*errstr = strdup("error connecting to IPC$ pipe");