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

Collapse All | Expand All

(-)apache13-modssl/files/apache.in (-3 / +3 lines)
Lines 169-182 Link Here
169
}
169
}
170
170
171
apache_checkfib () {
171
apache_checkfib () {
172
	sysctl net.fibs >/dev/null 2>&1
172
	$SYSCTL net.fibs >/dev/null 2>&1
173
	ret=$? 
173
	ret=$? 
174
 	[ $ret -gt 0 ] && return 0 
174
 	[ $ret -gt 0 ] && return 0 
175
	if [ "x$apache_fib" != "xNO" ]
175
	if [ "x$apache_fib" != "xNO" ]
176
	then 
176
	then 
177
		command="setfib -F ${apache_fib} ${command}"
177
		command="/usr/sbin/setfib -F ${apache_fib} ${command}"
178
	else
178
	else
179
		return	0
179
		return 0
180
	fi
180
	fi
181
}
181
}

Return to bug 153264