From 555bc82dea577738b75c5beb8ddbd462d0348d15 Mon Sep 17 00:00:00 2001 From: Jim McDonough Date: Fri, 18 Oct 2002 17:30:29 +0000 Subject: Add extra parm to cli_full_connection. Tim, you should probably take a look at this. (This used to be commit 42f04bbbb220843dc545ae67417243797f39f429) --- source3/python/py_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'source3/python/py_common.c') 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"); -- cgit