summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHannes Frederic Sowa <hannes@stressinduktion.org>2012-11-10 19:52:34 (GMT)
committerDavid S. Miller <davem@davemloft.net>2012-11-13 19:38:47 (GMT)
commitd4596bad2a713fcd0def492b1960e6d899d5baa8 (patch)
treef1f2f43368887c7a3b63ba1d89dea97e4c29c1bd
parent73e212fc48890b552e4ae65b65c0e709f478879b (diff)
downloadlinux-fsl-qoriq-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>
-rw-r--r--net/ipv6/ipv6_sockglue.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/ipv6_sockglue.c b/net/ipv6/ipv6_sockglue.c
index ba6d13d..e02faed 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;