ipv6: Remove hoplimit initialization to -1

The changes introduced with git-commit a02e4b7d ("ipv6: Demark default
hoplimit as zero.") missed to remove the hoplimit initialization. As a
result, ipv6_get_mtu interprets the return value of dst_metric_raw
(-1) as 255 and answers ping6 with this hoplimit. This patche removes
the line such that ping6 is answered with the hoplimit value
configured via sysctl.

Signed-off-by: Thomas Egerer <thomas.egerer@secunet.com>
Signed-off-by: David S. Miller <davem@davemloft.net>

authored by Thomas Egerer and committed by David S. Miller e965c05d e2a85aec

-1
-1
net/ipv6/route.c
··· 2012 2012 rt->dst.output = ip6_output; 2013 2013 rt->rt6i_dev = net->loopback_dev; 2014 2014 rt->rt6i_idev = idev; 2015 - dst_metric_set(&rt->dst, RTAX_HOPLIMIT, -1); 2016 2015 rt->dst.obsolete = -1; 2017 2016 2018 2017 rt->rt6i_flags = RTF_UP | RTF_NONEXTHOP;