diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2008-11-02 16:50:11 +0100 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2008-11-02 16:50:11 +0100 |
commit | cb77fca1cd4cb340ca619410195aa6895f848b92 (patch) | |
tree | 10624686f67917db2ecb597f41041de0c706e776 /source4/lib/messaging | |
parent | e11a7b3a0b7039af705ccb3a1c0bc7e21faa2bc6 (diff) | |
download | samba-cb77fca1cd4cb340ca619410195aa6895f848b92.tar.gz samba-cb77fca1cd4cb340ca619410195aa6895f848b92.tar.bz2 samba-cb77fca1cd4cb340ca619410195aa6895f848b92.zip |
Remove use of global loadparm in python modules.
Diffstat (limited to 'source4/lib/messaging')
-rw-r--r-- | source4/lib/messaging/pymessaging.c | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/source4/lib/messaging/pymessaging.c b/source4/lib/messaging/pymessaging.c index c2c23b679e..ad8f955466 100644 --- a/source4/lib/messaging/pymessaging.c +++ b/source4/lib/messaging/pymessaging.c @@ -34,6 +34,9 @@ PyAPI_DATA(PyTypeObject) messaging_Type; PyAPI_DATA(PyTypeObject) irpc_ClientConnectionType; +/* FIXME: This prototype should be in param/pyparam.h */ +struct loadparm_context *py_default_loadparm_context(TALLOC_CTX *mem_ctx); + static bool server_id_from_py(PyObject *object, struct server_id *server_id) { if (!PyTuple_Check(object)) { @@ -80,7 +83,8 @@ PyObject *py_messaging_connect(PyTypeObject *self, PyObject *args, PyObject *kwa ev = s4_event_context_init(ret->mem_ctx); if (messaging_path == NULL) { - messaging_path = lp_messaging_path(ret->mem_ctx, global_loadparm); + messaging_path = lp_messaging_path(ret->mem_ctx, + py_default_loadparm_context(ret->mem_ctx)); } else { messaging_path = talloc_strdup(ret->mem_ctx, messaging_path); } @@ -334,7 +338,8 @@ PyObject *py_irpc_connect(PyTypeObject *self, PyObject *args, PyObject *kwargs) ev = s4_event_context_init(ret->mem_ctx); if (messaging_path == NULL) { - messaging_path = lp_messaging_path(ret->mem_ctx, global_loadparm); + messaging_path = lp_messaging_path(ret->mem_ctx, + py_default_loadparm_context(ret->mem_ctx)); } else { messaging_path = talloc_strdup(ret->mem_ctx, messaging_path); } |