diff options
author | David Cantrell <dcantrell@redhat.com> | 2006-05-26 16:56:21 +0000 |
---|---|---|
committer | David Cantrell <dcantrell@redhat.com> | 2006-05-26 16:56:21 +0000 |
commit | df43bd85d5940ae14fbd7517787b2c46a955e447 (patch) | |
tree | 6d7de139af2a9b667050e23db1b331e7cf3ddd54 /isys/isys.c | |
parent | cb3d3f225cb1c8ade3fb89d6c4c5502f037a50b5 (diff) | |
download | anaconda-df43bd85d5940ae14fbd7517787b2c46a955e447.tar.gz anaconda-df43bd85d5940ae14fbd7517787b2c46a955e447.tar.xz anaconda-df43bd85d5940ae14fbd7517787b2c46a955e447.zip |
* isys/Makefile: Remove getipaddr.o reference.
* isys/getipaddr.c: Removed.
* isys/isys.c (doGetIPAddress): Call netlink_interfaces_ip2str()
instead of getIPAddr().
* isys/net.h: Removed getIPAddr() prototype.
Diffstat (limited to 'isys/isys.c')
-rw-r--r-- | isys/isys.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/isys/isys.c b/isys/isys.c index 5359987d9..64394c84e 100644 --- a/isys/isys.c +++ b/isys/isys.c @@ -1287,7 +1287,7 @@ static PyObject * doGetIPAddress(PyObject * s, PyObject * args) { if (!PyArg_ParseTuple(args, "s", &dev)) return NULL; - ret = getIPAddr(dev); + ret = netlink_interfaces_ip2str(dev); return Py_BuildValue("s", ret); } |