diff options
-rw-r--r-- | source3/python/py_common_proto.h | 2 | ||||
-rw-r--r-- | source3/python/py_ntsec.c | 2 | ||||
-rw-r--r-- | source3/python/py_winbind.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/source3/python/py_common_proto.h b/source3/python/py_common_proto.h index 992d444fa4..143ea2947c 100644 --- a/source3/python/py_common_proto.h +++ b/source3/python/py_common_proto.h @@ -13,7 +13,7 @@ PyObject *get_debuglevel(PyObject *self, PyObject *args); PyObject *set_debuglevel(PyObject *self, PyObject *args); PyObject *py_setup_logging(PyObject *self, PyObject *args, PyObject *kw); struct cli_state *open_pipe_creds(char *server, PyObject *creds, - cli_pipe_fn *connect_fn, char **errstr); + char *pipe_name, char **errstr); BOOL get_level_value(PyObject *dict, uint32 *level); /* The following definitions come from python/py_ntsec.c */ diff --git a/source3/python/py_ntsec.c b/source3/python/py_ntsec.c index 8981f0c3ac..f216d96aa8 100644 --- a/source3/python/py_ntsec.c +++ b/source3/python/py_ntsec.c @@ -21,7 +21,7 @@ #include "includes.h" #include "Python.h" -#include "python/py_common.h" +#include "python/py_common_proto.h" /* Convert a SID to a Python dict */ diff --git a/source3/python/py_winbind.c b/source3/python/py_winbind.c index e55d12afb2..49c7f8e924 100644 --- a/source3/python/py_winbind.c +++ b/source3/python/py_winbind.c @@ -23,7 +23,7 @@ #include "includes.h" #include "Python.h" -#include "py_common.h" +#include "py_common_proto.h" /* * Exceptions raised by this module |