diff options
author | Denys Vlasenko | 2011-02-09 04:39:09 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-02-09 04:39:09 +0100 |
commit | f13347130245f9fb86ecb3b9c217d3c558a717a9 (patch) | |
tree | 1fac3607260cd679d6a8e56501d89265de7d8ebf /networking/libiproute/libnetlink.c | |
parent | e7212a4ce5aa3570f7195c48335f0280a0fd4383 (diff) | |
download | busybox-f13347130245f9fb86ecb3b9c217d3c558a717a9.zip busybox-f13347130245f9fb86ecb3b9c217d3c558a717a9.tar.gz |
iproute: fix handling of "dev IFACE" selector
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'networking/libiproute/libnetlink.c')
-rw-r--r-- | networking/libiproute/libnetlink.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/networking/libiproute/libnetlink.c b/networking/libiproute/libnetlink.c index 7291ee2..547013f 100644 --- a/networking/libiproute/libnetlink.c +++ b/networking/libiproute/libnetlink.c @@ -55,6 +55,7 @@ int FAST_FUNC xrtnl_wilddump_request(struct rtnl_handle *rth, int family, int ty return rtnl_send(rth, (void*)&req, sizeof(req)); } +//TODO: pass rth->fd instead of full rth? int FAST_FUNC rtnl_send(struct rtnl_handle *rth, char *buf, int len) { struct sockaddr_nl nladdr; |