diff options
author | Brian Haley <brian.haley@hp.com> | 2006-03-12 03:50:14 +0100 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-03-12 03:50:14 +0100 |
commit | 0d27b42739ee432a66104793e51a23807b372928 (patch) | |
tree | d23986eff26122d06f6493029428a8748ff90040 /net | |
parent | [TG3] tg3_bus_string(): remove dead code (diff) | |
download | linux-0d27b42739ee432a66104793e51a23807b372928.tar.xz linux-0d27b42739ee432a66104793e51a23807b372928.zip |
[IPV6]: fix ipv6_saddr_score struct element
The scope element in the ipv6_saddr_score struct used in
ipv6_dev_get_saddr() is an unsigned integer, but __ipv6_addr_src_scope()
returns a signed integer (and can return -1).
Signed-off-by: Brian Haley <brian.haley@hp.com>
Acked-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to '')
-rw-r--r-- | net/ipv6/addrconf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/ipv6/addrconf.c b/net/ipv6/addrconf.c index b7d8822c1be4..19727d941962 100644 --- a/net/ipv6/addrconf.c +++ b/net/ipv6/addrconf.c @@ -822,7 +822,7 @@ struct ipv6_saddr_score { int addr_type; unsigned int attrs; int matchlen; - unsigned int scope; + int scope; unsigned int rule; }; |