diff options
author | Jelmer Vernooij <jelmer@samba.org> | 2009-06-02 15:00:41 +0200 |
---|---|---|
committer | Jelmer Vernooij <jelmer@samba.org> | 2009-06-02 18:05:42 +0200 |
commit | 8d966fac41ff88f8c26c221fb03da4f9afba5897 (patch) | |
tree | 7043da50245d3c77437988c9bbd5753bfb84cb1c /source4/param/pyparam.c | |
parent | ac9ff3574d6acac4f52c1d4d588cc9a7a3f919d6 (diff) | |
download | samba-8d966fac41ff88f8c26c221fb03da4f9afba5897.tar.gz |
Fix unresolved symbol in python messaging module.
Diffstat (limited to 'source4/param/pyparam.c')
-rw-r--r-- | source4/param/pyparam.c | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/source4/param/pyparam.c b/source4/param/pyparam.c index e32cfa05233..d8dabe34587 100644 --- a/source4/param/pyparam.c +++ b/source4/param/pyparam.c @@ -325,15 +325,6 @@ PyTypeObject PyLoadparmService = { .tp_flags = Py_TPFLAGS_DEFAULT, }; -struct loadparm_context *py_default_loadparm_context(TALLOC_CTX *mem_ctx) -{ - struct loadparm_context *ret; - ret = loadparm_init(mem_ctx); - if (!lp_load_default(ret)) - return NULL; - return ret; -} - static PyObject *py_default_path(PyObject *self) { return PyString_FromString(lp_default_path()); |