diff options
author | Hannes Frederic Sowa <hannes@stressinduktion.org> | 2012-11-10 23:52:34 +0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2012-11-13 23:38:47 +0400 |
commit | d4596bad2a713fcd0def492b1960e6d899d5baa8 (patch) | |
tree | f1f2f43368887c7a3b63ba1d89dea97e4c29c1bd /net | |
parent | 73e212fc48890b552e4ae65b65c0e709f478879b (diff) | |
download | linux-d4596bad2a713fcd0def492b1960e6d899d5baa8.tar.xz |
ipv6: setsockopt(IPIPPROTO_IPV6, IPV6_MINHOPCOUNT) forgot to set return value
Cc: Stephen Hemminger <shemminger@vyatta.com>
Signed-off-by: Hannes Frederic Sowa <hannes@stressinduktion.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/ipv6/ipv6_sockglue.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/ipv6_sockglue.c b/net/ipv6/ipv6_sockglue.c index ba6d13d1f1e1..e02faed6d17e 100644 --- a/net/ipv6/ipv6_sockglue.c +++ b/net/ipv6/ipv6_sockglue.c @@ -827,6 +827,7 @@ pref_skip_coa: if (val < 0 || val > 255) goto e_inval; np->min_hopcount = val; + retv = 0; break; case IPV6_DONTFRAG: np->dontfrag = valbool; |