1
0
mirror of https://github.com/samba-team/samba.git synced 2025-12-17 04:23:50 +03:00

open_pipe_creds() now takes a pipe index instead of a pipe name.

This commit is contained in:
Tim Potter
-
parent cfb0c12eb6
commit 3a0a30beda
5 changed files with 9 additions and 10 deletions

View File

@@ -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;