diff --git a/source4/scripting/python/pyglue.c b/source4/scripting/python/pyglue.c index f0723867917..3ae0a0965cd 100644 --- a/source4/scripting/python/pyglue.c +++ b/source4/scripting/python/pyglue.c @@ -491,6 +491,8 @@ static PyObject *py_dsdb_load_partition_usn(PyObject *self, PyObject *args) /* return the list of interface IPs we have configured takes an loadparm context, returns a list of IPs in string form + + Does not return addresses on 127.0.0.0/8 */ static PyObject *py_interface_ips(PyObject *self, PyObject *args) { @@ -500,7 +502,7 @@ static PyObject *py_interface_ips(PyObject *self, PyObject *args) PyObject *py_lp_ctx; struct loadparm_context *lp_ctx; struct interface *ifaces; - int i; + int i, ifcount; if (!PyArg_ParseTuple(args, "O", &py_lp_ctx)) return NULL; @@ -517,10 +519,21 @@ static PyObject *py_interface_ips(PyObject *self, PyObject *args) count = iface_count(ifaces); - pylist = PyList_New(count); - for (i = 0; i