diff options
author | Patrick McHardy <kaber@trash.net> | 2007-09-11 04:45:15 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-09-11 04:45:15 -0400 |
commit | a2221f308dabb95abb914ad858d36c2462705558 (patch) | |
tree | 13179de94495566dd4d66b2d0148722b5f46f6ca /net/decnet/dn_dev.c | |
parent | 596e41509550447b030f7b16adaeb0138ab585a8 (diff) |
[DECNET]: Fix interface address listing regression.
Not all are listed, same as the IPV4 devinet bug.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/decnet/dn_dev.c')
-rw-r--r-- | net/decnet/dn_dev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/decnet/dn_dev.c b/net/decnet/dn_dev.c index fa6604fcf0e7..8def68209edd 100644 --- a/net/decnet/dn_dev.c +++ b/net/decnet/dn_dev.c | |||
@@ -814,7 +814,7 @@ static int dn_nl_dump_ifaddr(struct sk_buff *skb, struct netlink_callback *cb) | |||
814 | for (ifa = dn_db->ifa_list, dn_idx = 0; ifa; | 814 | for (ifa = dn_db->ifa_list, dn_idx = 0; ifa; |
815 | ifa = ifa->ifa_next, dn_idx++) { | 815 | ifa = ifa->ifa_next, dn_idx++) { |
816 | if (dn_idx < skip_naddr) | 816 | if (dn_idx < skip_naddr) |
817 | goto cont; | 817 | continue; |
818 | 818 | ||
819 | if (dn_nl_fill_ifaddr(skb, ifa, NETLINK_CB(cb->skb).pid, | 819 | if (dn_nl_fill_ifaddr(skb, ifa, NETLINK_CB(cb->skb).pid, |
820 | cb->nlh->nlmsg_seq, RTM_NEWADDR, | 820 | cb->nlh->nlmsg_seq, RTM_NEWADDR, |