summaryrefslogtreecommitdiff
path: root/source3/python/py_lsa.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-05-16 02:24:22 +0000
committerTim Potter <tpot@samba.org>2002-05-16 02:24:22 +0000
commitce03ce2e5629930e582f9fd17445e52ce1b08907 (patch)
tree1681056b03ee12249d38fd45f89c45eeaca8e920 /source3/python/py_lsa.c
parentea8c45bbfd31151e91c1c57a162f255e706ca859 (diff)
downloadsamba-ce03ce2e5629930e582f9fd17445e52ce1b08907.tar.gz
samba-ce03ce2e5629930e582f9fd17445e52ce1b08907.tar.bz2
samba-ce03ce2e5629930e582f9fd17445e52ce1b08907.zip
Refactored open_pipe_creds() function to remove unused parameter.
(This used to be commit 36ed06cb5078429445f3bbb0f69baa2e0f8356a4)
Diffstat (limited to 'source3/python/py_lsa.c')
-rw-r--r--source3/python/py_lsa.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/python/py_lsa.c b/source3/python/py_lsa.c
index 23566282f6..cf96928790 100644
--- a/source3/python/py_lsa.c
+++ b/source3/python/py_lsa.c
@@ -66,8 +66,7 @@ static PyObject *lsa_open_policy(PyObject *self, PyObject *args,
&creds, &desired_access))
return NULL;
- if (!(cli = open_pipe_creds(server_name, creds, cli_lsa_initialise,
- NULL))) {
+ if (!(cli = open_pipe_creds(server_name, creds, cli_lsa_initialise))) {
fprintf(stderr, "could not initialise cli state\n");
return NULL;
}