Set the sysctl(8) value in the same shell, not a subshell. This was

causing calls to netoptions_init() to not properly set a global variable,
which ended up being in the parent shell.
This commit is contained in:
Mike Makonnen 2008-06-23 12:06:35 +00:00
parent c605eea952
commit e2a76fa732

View File

@ -36,12 +36,12 @@ case ${log_in_vain} in
;;
esac
[ "${log_in_vain}" -ne 0 ] && (
if [ "${log_in_vain}" -ne 0 ]; then
netoptions_init
echo -n " log_in_vain=${log_in_vain}"
sysctl net.inet.tcp.log_in_vain="${log_in_vain}" >/dev/null
sysctl net.inet.udp.log_in_vain="${log_in_vain}" >/dev/null
)
fi
case ${tcp_extensions} in
[Yy][Ee][Ss] | '')