View | Details | Raw Unified | Return to bug 223407 | Differences between
and this patch

Collapse All | Expand All

(-)network.subr (-2 / +10 lines)
Lines 122-128 ifn_vnet0() Link Here
122
#
122
#
123
ifconfig_up()
123
ifconfig_up()
124
{
124
{
125
	local _cfg _ifconfig_descr _ipv6_opts ifconfig_args 
125
	local _al _cfg _ifconfig_descr _ipv6_opts ifconfig_args
126
	_cfg=1
126
	_cfg=1
127
127
128
	# Make sure lo0 always comes up.
128
	# Make sure lo0 always comes up.
Lines 187-193 ifconfig_up() Link Here
187
				ifconfig_args="inet6 ${ifconfig_args}"
187
				ifconfig_args="inet6 ${ifconfig_args}"
188
			;;
188
			;;
189
			esac
189
			esac
190
			${IFCONFIG_CMD} $1 inet6 -ifdisabled
190
191
			_al=''
192
			case "${ifconfig_args}" in
193
			*-auto_linklocal*)
194
				_al="-auto_linklocal"
195
			;;
196
			esac
197
198
			${IFCONFIG_CMD} $1 inet6 ${_al} -ifdisabled
191
			eval ${IFCONFIG_CMD} $1 ${ifconfig_args}
199
			eval ${IFCONFIG_CMD} $1 ${ifconfig_args}
192
			_cfg=0
200
			_cfg=0
193
		fi
201
		fi

Return to bug 223407