summaryrefslogtreecommitdiff
path: root/source3/python/py_common.c
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
commitcad934c8e942aa5003e51488ee4b4c04b0071d77 (patch)
tree63871fe43fc48ec454b92bf849b5287ddce0e83c /source3/python/py_common.c
parent2dc9d4cfa1fe5f5ec48394942e21e7fd8fe838e0 (diff)
downloadsamba-cad934c8e942aa5003e51488ee4b4c04b0071d77.tar.gz
samba-cad934c8e942aa5003e51488ee4b4c04b0071d77.tar.bz2
samba-cad934c8e942aa5003e51488ee4b4c04b0071d77.zip
Compile fix for flags field to cli_full_connection()
(This used to be commit 802f30a1b34888823c1fc80121b3917cb6825119)
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 471a53da84..890422536e 100644
--- a/source3/python/py_common.c
+++ b/source3/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");