From fb3d215b396d9c3a1aecf9335a5520bdd604117f Mon Sep 17 00:00:00 2001 From: Jim McDonough Date: Fri, 18 Oct 2002 17:29:20 +0000 Subject: [PATCH] Add extra parm to cli_full_connection call. Tim, you should probably look at this. (This used to be commit a9f632ed5d3d033849c25efac419b21e830c5069) --- source3/python/py_common.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source3/python/py_common.c b/source3/python/py_common.c index 8742cfa363c..364271d57c4 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"); -- 2.34.1