On 27 October 2012 18:06, Hiroki Sato <[email protected]> wrote: > Author: hrs > Date: Sat Oct 27 17:06:26 2012 > New Revision: 242181 > URL: http://svn.freebsd.org/changeset/base/242181 > > Log: > Fix an issue when ipv6_enable=YES && ipv6_gateway_enable=YES which could > prevent rtadvd(8) from working as intended. > > Spotted by: brian > Discussed with: brian > > Modified: > head/etc/network.subr > head/etc/rc.d/rtadvd > > Modified: head/etc/network.subr > ============================================================================== > --- head/etc/network.subr Sat Oct 27 16:44:41 2012 (r242180) > +++ head/etc/network.subr Sat Oct 27 17:06:26 2012 (r242181) > @@ -504,7 +504,11 @@ ipv6_autoconfif() > # backward compatibility: $ipv6_enable > case $ipv6_enable in > [Yy][Ee][Ss]|[Tt][Rr][Uu][Ee]|[Oo][Nn]|1) > - return 0 > + if checkyesno ipv6_gateway_enable; then > + return 1 > + else > + return 0 > + fi
While there, any chance to use checkyesno ipv6_enable too? Chris _______________________________________________ [email protected] mailing list http://lists.freebsd.org/mailman/listinfo/svn-src-head To unsubscribe, send any mail to "[email protected]"
