summaryrefslogtreecommitdiff
path: root/source3/python/py_lsa.c
diff options
context:
space:
mode:
authorTim Potter <tpot@samba.org>2002-10-17 04:45:25 +0000
committerTim Potter <tpot@samba.org>2002-10-17 04:45:25 +0000
commit14df81590cd7f2b26053803de924c8604aad3c3b (patch)
tree25b0ef71450a745804bf17a08b609b84797da1bc /source3/python/py_lsa.c
parentdae2b02f781267d2a00bc627a053abef39299831 (diff)
downloadsamba-14df81590cd7f2b26053803de924c8604aad3c3b.tar.gz
samba-14df81590cd7f2b26053803de924c8604aad3c3b.tar.bz2
samba-14df81590cd7f2b26053803de924c8604aad3c3b.zip
open_pipe_creds() now takes a pipe index instead of a pipe name.
(This used to be commit 3a0a30beda4b8be0038c98ccc6f8f01c6dae386a)
Diffstat (limited to 'source3/python/py_lsa.c')
-rw-r--r--source3/python/py_lsa.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source3/python/py_lsa.c b/source3/python/py_lsa.c
index 0584cf716b..d54a2289ef 100644
--- a/source3/python/py_lsa.c
+++ b/source3/python/py_lsa.c
@@ -78,7 +78,7 @@ static PyObject *lsa_open_policy(PyObject *self, PyObject *args,
server += 2;
- if (!(cli = open_pipe_creds(server, creds, PIPE_LSARPC, &errstr))) {
+ if (!(cli = open_pipe_creds(server, creds, PI_LSARPC, &errstr))) {
PyErr_SetString(lsa_error, errstr);
free(errstr);
return NULL;